:root {
  --abyss: #050912;
  --abyss-2: #0a1120;
  --deep: #0d1b30;
  --panel: #0e1830;
  --line: rgba(120, 190, 255, 0.14);
  --cyan: #35e6ff;
  --blue: #3d7bff;
  --violet: #a24bff;
  --amber: #ffb238;
  --amber-2: #ff5f3d;
  --fog: #9fb6d8;
  --fog-dim: #6b7d9d;
  --white: #eef4ff;
  --font-display: "Teko", sans-serif;
  --font-mono: "Space Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--abyss);
  color: var(--white);
  font-family: var(--font-mono);
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; margin: 0; }
em { color: var(--cyan); font-style: normal; }

/* ---------- grain + canvas ---------- */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#sea {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 64px);
  background: linear-gradient(to bottom, rgba(5,9,18,0.92), rgba(5,9,18,0.7));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; border: 1px solid rgba(53, 230, 255, 0.4);
  box-shadow: 0 0 18px rgba(53, 230, 255, 0.35);
}
.brand-name {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 0.06em;
  color: var(--white);
}

.nav-links { display: flex; gap: 28px; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fog); }
.nav-links a { transition: color 0.2s ease; position: relative; }
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 100px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #04121c; font-weight: 700;
  box-shadow: 0 0 22px rgba(53, 230, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(53, 230, 255, 0.5); }

/* ---------- hero ---------- */
main { position: relative; z-index: 1; }

.hero { position: relative; padding: 70px clamp(20px, 5vw, 64px) 0; overflow: hidden; }

.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,123,255,0.28), rgba(162,75,255,0.08) 45%, transparent 70%);
  filter: blur(10px); z-index: -1;
  animation: pulseGlow 7s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: 0.7; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.08); } }

.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  align-items: center; max-width: 1280px; margin: 0 auto;
  padding-bottom: 60px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  margin: 0 0 18px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-title { font-size: clamp(48px, 7.2vw, 96px); line-height: 0.98; text-transform: uppercase; }
.hero-title .line { display: block; opacity: 0; transform: translateY(24px); animation: riseIn 0.8s ease forwards; }
.hero-title .line-1 { animation-delay: 0.1s; -webkit-text-stroke: 1px rgba(160, 200, 255, 0.5); color: transparent; }
.hero-title .line-2 { animation-delay: 0.3s; color: var(--white); }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  color: var(--fog); font-size: 16px; line-height: 1.65; max-width: 520px;
  margin: 22px 0 30px; opacity: 0; animation: riseIn 0.8s ease forwards 0.5s;
}
.hero-sub strong { color: var(--amber); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: riseIn 0.8s ease forwards 0.65s; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 12px; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #1a0700; box-shadow: 0 10px 30px rgba(255, 95, 61, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255, 95, 61, 0.45); }
.btn-ghost { border-color: rgba(160, 200, 255, 0.35); color: var(--white); }
.btn-ghost:hover { background: rgba(160, 200, 255, 0.08); border-color: var(--cyan); transform: translateY(-3px); }
.btn-wide { width: 100%; justify-content: center; margin-top: 26px; }

.hero-flags { display: flex; gap: 30px; margin-top: 44px; opacity: 0; animation: riseIn 0.8s ease forwards 0.8s; }
.flag { display: flex; flex-direction: column; gap: 4px; }
.flag-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fog-dim); }
.flag-value { font-size: 14px; color: var(--cyan); }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.shark-img {
  width: min(420px, 90%); border-radius: 28px;
  filter: drop-shadow(0 0 40px rgba(53, 230, 255, 0.25));
  animation: floatShark 5s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes floatShark { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(-1.2deg); } }

.art-ring {
  position: absolute; border: 1px solid rgba(53, 230, 255, 0.25);
  border-radius: 50%; width: 480px; height: 480px;
  animation: spin 22s linear infinite;
}
.art-ring::before {
  content: ""; position: absolute; top: -1px; left: 50%; width: 8px; height: 8px;
  background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px var(--cyan);
}
.ring-2 { width: 560px; height: 560px; border-color: rgba(162, 75, 255, 0.2); animation-duration: 30s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.bubble {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(160, 210, 255, 0.35);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 60%);
  animation: rise 8s ease-in infinite;
}
.b1 { width: 18px; height: 18px; left: 8%; bottom: -20px; animation-delay: 0s; }
.b2 { width: 10px; height: 10px; left: 80%; bottom: -20px; animation-delay: 2s; }
.b3 { width: 14px; height: 14px; left: 55%; bottom: -20px; animation-delay: 4s; }
.b4 { width: 8px; height: 8px; left: 30%; bottom: -20px; animation-delay: 6s; }
@keyframes rise { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 0.8; } 100% { transform: translateY(-440px) translateX(20px); opacity: 0; } }

.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(53, 230, 255, 0.04); overflow: hidden; padding: 14px 0;
}
.ticker-track { display: inline-flex; white-space: nowrap; animation: scroll 26s linear infinite; }
.ticker-track span {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan);
  padding-right: 40px;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- banner strip ---------- */
.banner-strip { padding: 56px clamp(20px, 5vw, 64px) 0; max-width: 1280px; margin: 0 auto; }
.banner-img {
  width: 100%; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ---------- shared section styles ---------- */
section { padding: 110px clamp(20px, 5vw, 64px); max-width: 1280px; margin: 0 auto; position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-tag { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }
.section-head h2 { font-size: clamp(32px, 4.5vw, 52px); margin-top: 14px; text-transform: uppercase; }
.community-sub { color: var(--fog); font-size: 15px; margin-top: 16px; line-height: 1.6; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 28px; transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-card h3 { font-size: 22px; color: var(--white); margin-bottom: 12px; text-transform: uppercase; }
.about-card p { color: var(--fog); font-size: 14px; line-height: 1.65; margin: 0; }
.card-a { transform: translateY(-14px); }
.card-c { transform: translateY(14px); }
.about-card:hover { transform: translateY(-6px); border-color: rgba(53, 230, 255, 0.4); }
.card-a:hover { transform: translateY(-20px); }
.card-c:hover { transform: translateY(8px); }

/* ---------- launch ---------- */
.launch { background: radial-gradient(ellipse at 20% 20%, rgba(53,230,255,0.05), transparent 55%); }
.launch-inner { display: grid; grid-template-columns: 1fr 0.8fr; gap: 60px; align-items: center; }
.launch h2 { margin-top: 14px; font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; }
.launch-copy p { color: var(--fog); font-size: 15px; line-height: 1.65; margin-top: 18px; }

.warn-card {
  margin-top: 28px; padding: 22px; border-radius: 16px;
  border: 1px solid rgba(255, 178, 56, 0.35);
  background: rgba(255, 178, 56, 0.06);
}
.warn-badge {
  display: inline-block; font-size: 11px; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 100px; background: var(--amber); color: #1a0d00;
  font-weight: 700; margin-bottom: 10px;
}
.warn-card p { color: var(--fog); font-size: 13.5px; line-height: 1.6; margin: 0; }

.pf-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.pf-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.pf-row:last-of-type { border-bottom: none; }
.pf-key { color: var(--fog-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.pf-val { color: var(--white); }
.pf-pulse { color: var(--cyan); }
.pf-pulse::before { content: "●"; margin-right: 6px; animation: blink 1.4s ease-in-out infinite; }
.pf-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  top: 0; animation: scan 3.2s ease-in-out infinite;
  box-shadow: 0 0 16px var(--cyan);
}
@keyframes scan { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* ---------- roadmap ---------- */
.cycle { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.cycle-step {
  position: relative; padding: 30px 26px; border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(160deg, rgba(61,123,255,0.06), transparent);
}
.cycle-step:not(:last-child)::after {
  content: "→"; position: absolute; right: -34px; top: 50%; transform: translateY(-50%);
  color: var(--fog-dim); font-size: 20px; display: none;
}
@media (min-width: 900px) { .cycle-step:not(:last-child)::after { display: block; } }
.cycle-num {
  font-family: var(--font-display); font-size: 44px; color: transparent;
  -webkit-text-stroke: 1px rgba(53, 230, 255, 0.5); display: block; margin-bottom: 10px;
}
.cycle-step h3 { font-size: 22px; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.cycle-step p { color: var(--fog); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- community ---------- */
.link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.link-card {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px;
  border: 1px solid var(--line); border-radius: 16px; background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.link-card:hover { transform: translateY(-4px); border-color: rgba(53,230,255,0.45); background: rgba(53,230,255,0.05); }
.link-primary { border-color: rgba(255, 178, 56, 0.4); background: rgba(255, 178, 56, 0.05); }
.link-icon { width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: rgba(53,230,255,0.1); color: var(--cyan); }
.link-icon svg { width: 20px; height: 20px; }
.link-text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.link-text strong { font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; }
.link-text small { color: var(--fog-dim); font-size: 12px; }
.link-arrow { color: var(--fog-dim); transition: transform 0.25s ease, color 0.25s ease; }
.link-card:hover .link-arrow { transform: translateX(4px); color: var(--cyan); }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 50px clamp(20px, 5vw, 64px) 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; max-width: 1280px; margin: 0 auto; flex-wrap: wrap; }
.footer-brand { display: flex; gap: 16px; max-width: 480px; }
.footer-mark { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.footer-brand strong { text-transform: uppercase; letter-spacing: 0.05em; font-size: 14px; }
.footer-brand p { color: var(--fog-dim); font-size: 12.5px; line-height: 1.6; margin: 8px 0 0; }
.footer-links { display: flex; gap: 24px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fog); }
.footer-links a:hover { color: var(--cyan); }
.footer-note { text-align: center; color: var(--fog-dim); font-size: 11.5px; margin: 40px 0 0; letter-spacing: 0.04em; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 320px; }
  .about-grid { grid-template-columns: 1fr; }
  .card-a, .card-c { transform: none; }
  .launch-inner { grid-template-columns: 1fr; }
  .cycle { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 15vw; }
  section { padding: 80px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
