:root {
  --forest: #245448;
  --forest-deep: #1a3d38;
  --teal: #3e6d69;
  --teal-mid: #5c8c8a;
  --mint: #84c0b4;
  --mint-soft: #90ccc0;
  --mist: #d8ebe6;
  --paper: #eef6f3;
  --paper-2: #e2f0ec;
  --ink: #1a3d38;
  --muted: #4a6b66;
  --line: rgba(36, 84, 72, 0.14);
  --panel: rgba(238, 246, 243, 0.78);
  --accent: var(--teal);
  --btn-fill: linear-gradient(160deg, #5c8c8a 0%, #3e6d69 48%, #2a564f 100%);
  --btn-fill-hover: linear-gradient(160deg, #6e9e9b 0%, #4a7d78 48%, #35665e 100%);
  --radius: 2px;
  --font-display: "Fraunces", "Palatino Linotype", serif;
  --font-body: "Figtree", sans-serif;
  --header-h: 78px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(132, 192, 180, 0.35), transparent 55%),
    radial-gradient(760px 480px at 8% 20%, rgba(92, 140, 138, 0.18), transparent 50%),
    radial-gradient(700px 420px at 50% 100%, rgba(36, 84, 72, 0.08), transparent 55%),
    linear-gradient(180deg, #eef6f3 0%, #e4f0ec 48%, #d7e8e3 100%);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.grain,
.mist-layer,
#fxCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 40;
  opacity: 0.055;
  mix-blend-mode: multiply;
  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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(8) infinite;
}

.mist-layer {
  z-index: 1;
  background:
    radial-gradient(ellipse 48% 30% at 78% 12%, rgba(144, 204, 192, 0.2), transparent 62%),
    radial-gradient(ellipse 40% 28% at 14% 72%, rgba(62, 109, 105, 0.1), transparent 60%);
  animation: mistDrift 22s ease-in-out infinite alternate;
}

#fxCanvas {
  z-index: 2;
  opacity: 0.35;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -2%); }
}

@keyframes mistDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 1.5%, 0) scale(1.04); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(238, 246, 243, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(26, 61, 56, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1.5px solid rgba(36, 84, 72, 0.22);
  background: rgba(238, 246, 243, 0.65);
  animation: brandFloat 5.5s ease-in-out infinite;
}

@keyframes brandFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal-mid);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-mid), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--forest);
  background: var(--btn-fill);
  color: #f4faf8 !important;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--btn-fill-hover);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.75rem 1.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  color: #f4faf8;
  background: var(--btn-fill);
  border-color: var(--forest-deep);
  box-shadow: 0 12px 28px rgba(36, 84, 72, 0.22);
}

.btn-primary img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shineSweep 5s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--btn-fill-hover);
  border-color: var(--forest);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(36, 84, 72, 0.28);
  background: rgba(238, 246, 243, 0.72);
}

.btn-outline img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(900%) hue-rotate(118deg);
  opacity: 0.85;
}

.btn-ghost {
  color: var(--teal);
  border-color: transparent;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline:hover {
  color: var(--forest-deep);
  border-color: rgba(36, 84, 72, 0.5);
  background: #fff;
}

.btn-ghost:hover {
  color: var(--forest);
  border-color: rgba(36, 84, 72, 0.22);
  background: rgba(238, 246, 243, 0.7);
}

@keyframes shineSweep {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

/* Hero — full-bleed banner composition */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: bannerDrift 24s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 61, 56, 0.72) 0%, rgba(26, 61, 56, 0.42) 42%, rgba(26, 61, 56, 0.18) 72%, rgba(26, 61, 56, 0.28) 100%),
    linear-gradient(180deg, rgba(26, 61, 56, 0.35) 0%, transparent 32%, rgba(26, 61, 56, 0.78) 100%);
}

@keyframes bannerDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.2%); }
}

.hero-copy {
  max-width: 36rem;
  color: #eef6f3;
}

.hero-brand-mark {
  width: clamp(72px, 12vw, 104px);
  height: auto;
  margin-bottom: 1.1rem;
  border: 2px solid rgba(238, 246, 243, 0.35);
  background: rgba(36, 84, 72, 0.25);
  animation: brandFloat 6s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7.2vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #f4faf8;
  text-shadow: 0 12px 40px rgba(10, 28, 26, 0.35);
  animation: titleBreathe 7s ease-in-out infinite;
  word-break: break-word;
}

@keyframes titleBreathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.05); }
}

.hero-lead,
.section-lead {
  max-width: 32rem;
  font-size: 1.05rem;
}

.hero-lead {
  color: rgba(238, 246, 243, 0.86);
}

.section-lead {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.25rem;
}

.hero .btn-outline {
  color: #eef6f3;
  border-color: rgba(238, 246, 243, 0.4);
  background: rgba(26, 61, 56, 0.28);
  backdrop-filter: blur(6px);
}

.hero .btn-outline:hover {
  color: #fff;
  border-color: rgba(238, 246, 243, 0.7);
  background: rgba(26, 61, 56, 0.5);
}

.ca-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(26, 61, 56, 0.42);
  border: 1px solid rgba(238, 246, 243, 0.22);
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.ca-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 246, 243, 0.65);
  font-weight: 650;
}

#contractAddress {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #dff0ea;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42vw, 280px);
}

.copy-btn {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(144, 204, 192, 0.45);
  color: #dff0ea;
  background: rgba(132, 192, 180, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.copy-btn:hover,
.copy-btn.copied {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--forest-deep);
}

/* Divider */
.forest-divider {
  position: relative;
  z-index: 3;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
}

.divider-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 109, 105, 0.45), transparent);
}

.divider-mark {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--teal-mid);
  transform: rotate(45deg);
  animation: markPulse 4s ease-in-out infinite;
}

@keyframes markPulse {
  0%, 100% { opacity: 0.55; transform: rotate(45deg) scale(1); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.15); }
}

/* Sections */
.section {
  position: relative;
  z-index: 3;
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1rem, 4vw, 3rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 2rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-mid), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 650;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-logo {
  width: min(100%, 360px);
  aspect-ratio: 1;
  object-fit: contain;
  border: 1.5px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, #f2faf7, #cfe6df 72%);
  box-shadow: 0 24px 48px rgba(26, 61, 56, 0.1);
  animation: logoIdle 8s ease-in-out infinite;
}

@keyframes logoIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy > p {
  color: var(--muted);
}

.trait-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.trait-list li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal-mid);
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.trait-list li:hover {
  border-color: rgba(62, 109, 105, 0.35);
  border-left-color: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 61, 56, 0.07);
}

.trait-list strong {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}

.trait-list span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* How to buy */
.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.buy-step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  min-height: 210px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal-mid);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(226, 240, 236, 0.45));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.buy-step:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 109, 105, 0.35);
  border-top-color: var(--forest);
  box-shadow: 0 18px 36px rgba(26, 61, 56, 0.08);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: var(--teal-mid);
}

.buy-step h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.buy-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.link-tile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.link-tile img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(28%) sepia(18%) saturate(900%) hue-rotate(118deg);
  opacity: 0.8;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.link-tile strong {
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink);
}

.link-tile span {
  color: var(--muted);
  font-size: 0.82rem;
}

.link-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 109, 105, 0.4);
  background: #fff;
  box-shadow: 0 14px 30px rgba(26, 61, 56, 0.08);
}

.link-tile:hover img {
  opacity: 1;
}

/* Mural */
.watch {
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(92, 140, 138, 0.14), transparent 60%),
    radial-gradient(600px 300px at 80% 80%, rgba(132, 192, 180, 0.18), transparent 55%);
}

.video-stage {
  max-width: 960px;
  margin: 0 auto;
}

.mural-card {
  display: block;
  border: 1.5px solid rgba(36, 84, 72, 0.22);
  background: #142824;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(26, 61, 56, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mural-card:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 192, 180, 0.45);
  box-shadow: 0 32px 72px rgba(26, 61, 56, 0.24);
}

.mural-card-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(238, 246, 243, 0.08);
  background: linear-gradient(90deg, #2a564f, #1a3d38 48%, #245448);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: rgba(238, 246, 243, 0.72);
  text-transform: uppercase;
}

.mural-card-bar .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: livePulse 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(132, 192, 180, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(132, 192, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(132, 192, 180, 0); }
}

.mural-card-bar > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mural-open {
  margin-left: auto;
  flex-shrink: 0;
  color: #eef6f3;
  border: 1px solid rgba(238, 246, 243, 0.3);
  background: rgba(238, 246, 243, 0.1);
  padding: 0.3rem 0.65rem;
  font-weight: 700;
}

.mural-card:hover .mural-open {
  border-color: #eef6f3;
  background: rgba(238, 246, 243, 0.2);
}

.mural-card-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 280px;
}

.mural-card-art {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.mural-card-copy {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(180deg, #1a3d38, #142824);
  color: #eef6f3;
}

.mural-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-soft);
}

.mural-card-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.15;
  font-weight: 650;
}

.mural-card-copy p {
  color: rgba(238, 246, 243, 0.78);
  font-size: 0.95rem;
}

.mural-cta {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}

.inline-link {
  color: var(--teal);
  border-bottom: 1px solid rgba(62, 109, 105, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-link:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

/* Join */
.join {
  padding: 0;
}

.join-scene {
  position: relative;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.join-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: bannerDrift 20s ease-in-out infinite alternate;
}

.join-banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 61, 56, 0.25) 0%, rgba(26, 61, 56, 0.45) 40%, rgba(26, 61, 56, 0.88) 100%),
    linear-gradient(90deg, rgba(26, 61, 56, 0.55), transparent 50%, rgba(26, 61, 56, 0.25));
  pointer-events: none;
}

.join-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.2rem, 5vw, 4rem);
  color: #eef6f3;
}

.join-copy .eyebrow {
  color: var(--mint-soft);
}

.join-copy .eyebrow::before {
  background: linear-gradient(90deg, var(--mint-soft), transparent);
}

.join-copy .section-title {
  color: #f4faf8;
}

.join-copy .section-lead {
  color: rgba(238, 246, 243, 0.82);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.join .btn-outline {
  color: #eef6f3;
  border-color: rgba(238, 246, 243, 0.38);
  background: rgba(26, 61, 56, 0.3);
}

.join .btn-outline:hover {
  color: #fff;
  border-color: rgba(238, 246, 243, 0.7);
  background: rgba(26, 61, 56, 0.55);
}

.join .btn-ghost {
  color: rgba(238, 246, 243, 0.88);
}

.join .btn-ghost:hover {
  color: #fff;
  border-color: rgba(238, 246, 243, 0.3);
  background: rgba(238, 246, 243, 0.1);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1rem, 4vw, 3rem) 2.5rem;
  background: rgba(226, 240, 236, 0.65);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.brand-footer .brand-mark {
  width: 40px;
  height: 40px;
}

.brand-footer span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-footer strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-footer em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--teal-mid);
  font-weight: 700;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.8rem;
  max-width: 34rem;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-socials a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(18%) saturate(900%) hue-rotate(118deg);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  border-color: rgba(62, 109, 105, 0.45);
  background: #fff;
  transform: translateY(-2px);
}

.footer-socials a:hover img {
  opacity: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    align-items: flex-end;
    min-height: 92vh;
    padding-bottom: 3rem;
  }

  .about-grid,
  .buy-steps,
  .buy-links,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .buy-step {
    min-height: 0;
  }

  .about-logo {
    width: min(100%, 280px);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(238, 246, 243, 0.97);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.1rem;
  }

  .trait-list {
    grid-template-columns: 1fr;
  }

  .video-chrome-bar span:nth-child(2) {
    max-width: 42vw;
  }

  .mural-card-body {
    grid-template-columns: 1fr;
  }

  .mural-card-bar > span:nth-child(2) {
    max-width: 42vw;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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