@charset "UTF-8";

:root {
  --ink: #062d35;
  --ink-soft: #17444a;
  --deep: #041f26;
  --deep-2: #073740;
  --ocean: #0e7581;
  --ocean-bright: #28b8b8;
  --seafoam: #a6f4df;
  --sand: #f6f0df;
  --cream: #fcfaf2;
  --white: #ffffff;
  --muted: #668087;
  --line: rgba(7, 71, 79, .14);
  --shadow: 0 22px 70px rgba(6, 45, 53, .14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--deep);
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(4, 31, 38, .62);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 31, 38, .94);
  box-shadow: 0 10px 30px rgba(3, 20, 25, .24);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 17px;
  letter-spacing: .01em;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-menu > a {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease;
}

.site-menu > a:hover,
.site-menu > a:focus-visible {
  color: var(--white);
}

.site-menu .nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(166, 244, 223, .35);
  border-radius: 999px;
  color: var(--deep);
  background: var(--seafoam);
}

.site-menu .nav-cta:hover,
.site-menu .nav-cta:focus-visible {
  color: var(--deep);
  background: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 170px 0 140px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 25, 31, .98), rgba(7, 66, 76, .94)),
    radial-gradient(circle at 70% 15%, rgba(40, 184, 184, .42), transparent 34%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--ocean-bright);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(166, 244, 223, .18);
  border-radius: 999px;
  color: var(--seafoam);
  background: rgba(166, 244, 223, .08);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seafoam);
  box-shadow: 0 0 0 0 rgba(166, 244, 223, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(166, 244, 223, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 244, 223, 0); }
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 7vw, 96px);
  line-height: .94;
  letter-spacing: -.06em;
}

.hero h1 span {
  color: var(--seafoam);
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.hero-actions,
.collection-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--deep);
  background: var(--seafoam);
  box-shadow: 0 12px 35px rgba(166, 244, 223, .16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  box-shadow: 0 16px 45px rgba(166, 244, 223, .23);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, .12);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(14, 117, 129, .38);
  box-shadow: 0 12px 32px rgba(6, 45, 53, .1);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.status-pill {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .07);
  font-weight: 800;
  white-space: nowrap;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.turtle-scene {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  filter: drop-shadow(0 34px 55px rgba(0, 0, 0, .28));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(166, 244, 223, .12);
}

.orbital-one {
  width: 420px;
  height: 420px;
}

.orbital-two {
  width: 545px;
  height: 545px;
  border-color: rgba(255, 255, 255, .06);
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 148px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(5, 38, 45, .72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.floating-card span,
.floating-card small {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin: 4px 0 3px;
  color: var(--white);
  font-size: 22px;
}

.floating-card-top {
  top: 42px;
  right: 0;
}

.floating-card-bottom {
  bottom: 48px;
  left: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -80px;
  background: rgba(40, 184, 184, .16);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  bottom: 30px;
  left: -180px;
  background: rgba(166, 244, 223, .08);
}

.wave {
  position: absolute;
  inset: auto 0 -1px;
  height: 150px;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave path {
  fill: var(--cream);
}

.stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.stats-grid article {
  min-height: 82px;
  display: grid;
  align-content: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.03em;
}

.stats-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading h2,
.collection-copy h2,
.impact-copy h2,
.team-copy h2,
.faq-intro h2,
.social-card h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.section-heading > p:last-child,
.collection-copy > p,
.impact-copy > p,
.team-copy > p,
.faq-intro > p,
.social-card > div:first-child > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(6, 45, 53, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon-wrap {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 17px;
  color: var(--deep);
  background: var(--seafoam);
  font-size: 25px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.03em;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.collection-section {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.collection-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -220px;
  top: 20px;
  border-radius: 50%;
  background: rgba(40, 184, 184, .11);
}

.collection-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.collection-copy > p {
  max-width: 610px;
}

.share-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--ocean);
  font-size: 13px;
  font-weight: 700;
}

.rarity-stack {
  display: grid;
  gap: 18px;
}

.rarity-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 24px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.rarity-card .chest {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: rgba(0, 0, 0, .56);
  font-size: 32px;
  transform: rotate(45deg);
}

.rarity-card .chest::first-letter {
  transform: rotate(-45deg);
}

.rarity-card span,
.rarity-card small {
  display: block;
}

.rarity-card span {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rarity-card strong {
  display: block;
  margin: 4px 0;
  font-size: 25px;
  letter-spacing: -.03em;
}

.rarity-card small {
  color: rgba(6, 45, 53, .65);
}

.rarity-gold {
  background: linear-gradient(135deg, #fff4bf, #e9bc48);
}

.rarity-gold .chest {
  background: rgba(255, 255, 255, .42);
}

.rarity-silver {
  margin-left: 36px;
  background: linear-gradient(135deg, #f4f8fb, #b9c6d1);
}

.rarity-silver .chest {
  background: rgba(255, 255, 255, .48);
}

.rarity-bronze {
  margin-left: 72px;
  background: linear-gradient(135deg, #f5d1aa, #b87542);
}

.rarity-bronze .chest {
  background: rgba(255, 255, 255, .32);
}

.impact-band {
  padding: 100px 0;
  color: var(--white);
  background: var(--deep);
  overflow: hidden;
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 80px;
}

.impact-copy .kicker {
  color: var(--seafoam);
}

.impact-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, .66);
}

.impact-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 10%, rgba(40, 184, 184, .28), transparent 44%),
    linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  overflow: hidden;
}

.impact-number {
  position: relative;
  z-index: 2;
  color: var(--seafoam);
  font-size: clamp(100px, 13vw, 180px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.08em;
}

.impact-label {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  width: min(330px, calc(100% - 50px));
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.bottle {
  position: absolute;
  right: 42px;
  top: 34px;
  width: 58px;
  height: 150px;
  border: 6px solid rgba(255, 255, 255, .12);
  border-radius: 16px 16px 24px 24px;
  transform: rotate(16deg);
}

.bottle::before {
  content: "";
  position: absolute;
  width: 29px;
  height: 25px;
  left: 8px;
  top: -24px;
  border: 6px solid rgba(255, 255, 255, .12);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.bottle span {
  position: absolute;
  inset: 54px 7px 12px;
  border-radius: 8px 8px 15px 15px;
  background: rgba(40, 184, 184, .13);
}

.bubble {
  position: absolute;
  border: 1px solid rgba(166, 244, 223, .22);
  border-radius: 50%;
}

.bubble-a { width: 64px; height: 64px; left: 45px; top: 50px; }
.bubble-b { width: 28px; height: 28px; left: 108px; top: 126px; }
.bubble-c { width: 42px; height: 42px; right: 110px; bottom: 82px; }

.roadmap-section {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin-left: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 34px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 26px;
  padding: 0 0 42px;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--white);
  font-weight: 900;
}

.timeline-item.is-complete .timeline-marker {
  color: var(--deep);
  border-color: var(--seafoam);
  background: var(--seafoam);
}

.timeline-item.is-current .timeline-marker {
  color: var(--white);
  border-color: var(--ocean);
  background: var(--ocean);
  box-shadow: 0 0 0 8px rgba(14, 117, 129, .1);
}

.timeline-status {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--ocean);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -.03em;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.team-section {
  background: var(--sand);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
}

.team-art {
  position: relative;
  min-height: 470px;
}

.portrait {
  position: absolute;
  width: 230px;
  height: 300px;
  display: grid;
  place-items: end start;
  padding: 22px;
  border: 8px solid rgba(255, 255, 255, .8);
  border-radius: 30px;
  color: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,.76) 0 30px, transparent 31px),
    radial-gradient(ellipse at 50% 112%, rgba(255,255,255,.3) 0 95px, transparent 96px);
}

.portrait span {
  position: relative;
  z-index: 2;
  font-size: 42px;
  font-weight: 900;
}

.portrait-one {
  left: 0;
  top: 60px;
  background: linear-gradient(150deg, #0e7581, #073740);
  transform: rotate(-8deg);
}

.portrait-two {
  left: 150px;
  top: 10px;
  z-index: 2;
  background: linear-gradient(150deg, #28b8b8, #0e7581);
  transform: rotate(3deg);
}

.portrait-three {
  left: 285px;
  top: 95px;
  background: linear-gradient(150deg, #17444a, #041f26);
  transform: rotate(10deg);
}

.team-copy > p {
  max-width: 620px;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item button i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--seafoam);
  font-style: normal;
  font-size: 21px;
  transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  transition: padding .25s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 24px 24px;
}

.social-section {
  padding: 0 0 110px;
}

.social-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  gap: 70px;
  padding: 58px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(40, 184, 184, .4), transparent 36%),
    var(--deep);
  box-shadow: 0 30px 90px rgba(6, 45, 53, .18);
}

.social-card .kicker {
  color: var(--seafoam);
}

.social-card > div:first-child > p:last-child {
  color: rgba(255, 255, 255, .64);
}

.social-actions {
  display: grid;
  gap: 12px;
}

.social-link {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .05);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateX(5px);
  background: rgba(255, 255, 255, .09);
}

.social-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--deep);
  background: var(--seafoam);
  font-size: 21px;
  font-weight: 950;
}

.social-link > span:nth-child(2) {
  display: grid;
}

.social-link strong {
  font-size: 15px;
}

.social-link small {
  color: rgba(255, 255, 255, .54);
}

.site-footer {
  padding: 66px 0 32px;
  color: rgba(255, 255, 255, .72);
  background: #02171c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .48);
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--seafoam);
}

.footer-small {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .38);
  font-size: 12px;
}

.footer-small p {
  margin: 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--seafoam);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .hero-grid,
  .collection-layout,
  .impact-grid,
  .team-layout,
  .faq-layout,
  .social-card {
    gap: 50px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  }

  .team-layout {
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  }

  .portrait {
    width: 190px;
    height: 265px;
  }

  .portrait-two { left: 120px; }
  .portrait-three { left: 235px; }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 102;
  }

  .site-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    padding: 100px 30px 40px;
    background: rgba(4, 31, 38, .98);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }

  .site-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-menu > a {
    font-size: 23px;
  }

  .site-menu .nav-cta {
    margin-top: 8px;
    font-size: 16px;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid,
  .collection-layout,
  .impact-grid,
  .team-layout,
  .faq-layout,
  .social-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art {
    min-height: 480px;
  }

  .floating-card-top {
    right: 6%;
  }

  .floating-card-bottom {
    left: 4%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .stats-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .feature-card {
    min-height: auto;
  }

  .collection-copy {
    max-width: 660px;
  }

  .impact-visual {
    min-height: 330px;
  }

  .team-art {
    max-width: 520px;
  }

  .faq-intro {
    position: static;
  }

  .social-card {
    padding: 44px;
  }
}

@media (max-width: 600px) {
  .nav-shell {
    min-height: 74px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 120px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .collection-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-art {
    min-height: 370px;
  }

  .orbital-one { width: 290px; height: 290px; }
  .orbital-two { width: 350px; height: 350px; }

  .floating-card {
    min-width: 126px;
    padding: 12px 14px;
  }

  .floating-card strong {
    font-size: 18px;
  }

  .floating-card-top {
    top: 16px;
    right: 0;
  }

  .floating-card-bottom {
    bottom: 20px;
    left: 0;
  }

  .stats-strip {
    margin-top: -28px;
  }

  .stats-grid {
    padding: 10px;
  }

  .stats-grid article {
    min-height: 90px;
    padding: 14px;
  }

  .stats-grid strong {
    font-size: 20px;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .collection-copy h2,
  .impact-copy h2,
  .team-copy h2,
  .faq-intro h2,
  .social-card h2 {
    font-size: 40px;
  }

  .feature-card {
    padding: 26px;
  }

  .rarity-card {
    grid-template-columns: 64px 1fr;
    gap: 17px;
    padding: 20px;
  }

  .rarity-card .chest {
    width: 60px;
    height: 60px;
  }

  .rarity-silver,
  .rarity-bronze {
    margin-left: 0;
  }

  .impact-band {
    padding: 80px 0;
  }

  .impact-number {
    font-size: 118px;
  }

  .team-art {
    min-height: 350px;
  }

  .portrait {
    width: 150px;
    height: 220px;
    border-width: 5px;
    border-radius: 22px;
  }

  .portrait-one { left: 0; top: 60px; }
  .portrait-two { left: calc(50% - 75px); top: 8px; }
  .portrait-three { left: auto; right: 0; top: 75px; }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .timeline-marker {
    width: 46px;
    height: 46px;
  }

  .faq-item button {
    padding: 20px;
  }

  .faq-item.is-open .faq-answer > p {
    padding: 0 20px 20px;
  }

  .social-card {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .social-link {
    grid-template-columns: 46px 1fr auto;
    padding: 13px;
  }

  .social-icon {
    width: 46px;
    height: 46px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-small {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Clean free mint addition */
.wallet-nav-button {
  font-family: inherit;
  cursor: pointer;
}

.wallet-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ocean);
}

.wallet-nav-button.is-connected .wallet-status-dot {
  background: #169b69;
  box-shadow: 0 0 0 5px rgba(22, 155, 105, .13);
}

.free-mint-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.free-mint-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: 5%;
  right: -260px;
  border-radius: 50%;
  background: rgba(40, 184, 184, .1);
}

.free-mint-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 82px;
}

.free-mint-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.01;
  letter-spacing: -.05em;
}

.free-mint-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.claim-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.claim-points span {
  padding: 8px 12px;
  border: 1px solid rgba(14, 117, 129, .17);
  border-radius: 999px;
  color: var(--ocean);
  background: rgba(40, 184, 184, .07);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.free-mint-copy .claim-small-print {
  font-size: 12px;
  line-height: 1.6;
}

.claim-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0, rgba(40, 184, 184, .2), transparent 34%),
    linear-gradient(145deg, #041f26, #073f49);
  box-shadow: 0 32px 90px rgba(6, 45, 53, .22);
}

.claim-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.claim-card-label {
  color: var(--seafoam);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.claim-card h3 {
  margin: 6px 0 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.polygon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.05);
  font-size: 11px;
  font-weight: 800;
}

.polygon-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8247e5;
}

.claim-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}

.claim-status-grid article,
.connected-wallet {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.claim-status-grid span,
.connected-wallet span {
  display: block;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.claim-status-grid strong,
.connected-wallet strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.claim-progress {
  height: 9px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.claim-progress span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ocean-bright), var(--seafoam));
  transition: width .6s ease;
}

.connected-wallet {
  margin-top: 14px;
}

.claim-button {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  color: var(--deep);
  background: var(--seafoam);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.claim-button:not(:disabled):hover {
  transform: translateY(-2px);
  background: var(--white);
}

.claim-button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.claim-button i {
  font-size: 21px;
  font-style: normal;
}

.claim-now {
  color: var(--white);
  background: var(--ocean);
}

.claim-now:not(:disabled):hover {
  color: var(--deep);
  background: var(--seafoam);
}

.claim-message {
  min-height: 20px;
  margin: 15px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  line-height: 1.55;
}

.claim-message.is-error { color: #ffaaa3; }
.claim-message.is-success { color: var(--seafoam); }

.claim-transaction-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--seafoam);
  font-size: 12px;
  font-weight: 850;
}

.claim-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.claim-links a {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.wallet-modal[hidden] { display: none; }

.wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.wallet-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 24, 30, .82);
  backdrop-filter: blur(9px);
}

.wallet-modal-card {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  padding: 36px;
  border-radius: 27px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0,0,0,.32);
  text-align: center;
}

.wallet-modal-card img { margin: 0 auto; }

.wallet-modal-card h2 {
  margin: 20px 0 0;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.wallet-modal-card p {
  color: var(--muted);
}

.wallet-modal-card .button {
  width: 100%;
  margin-top: 9px;
}

.wallet-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sand);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .free-mint-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wallet-nav-button {
    margin-top: 10px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .free-mint-copy h2 {
    font-size: 40px;
  }

  .claim-card {
    padding: 21px;
    border-radius: 23px;
  }

  .claim-card-top {
    align-items: flex-start;
  }

  .claim-card h3 {
    font-size: 25px;
  }

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

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