:root {
  --ink: #17320f;
  --ink-soft: #45653b;
  --leaf: #4f7a2f;
  --leaf-dark: #2f531c;
  --lime: #d8ef9c;
  --cream: #f7f2df;
  --paper: #f2f0df;
  --white: #fffef8;

  --header-scroll: rgba(234,240,207,.90);
  --line: rgba(23,50,15,.16);

  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);

  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(216,239,156,.72),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #f7f4e7 0%,
      #f1f0df 62%,
      #e9efd6 100%
    );

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  overflow-x: hidden;
}

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

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

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

.section-shell,
.site-header {
  width:
    min(
      1180px,
      calc(100% - 40px)
    );

  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .05;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}


/* HEADER */

.site-header {
  height: 64px;

  display: grid;

  grid-template-columns:
    auto
    minmax(190px, 1fr)
    auto;

  align-items: center;

  column-gap: 34px;

  position: sticky;

  top: 0;

  z-index: 500;

  isolation: isolate;
}

.site-header::before {
  content: "";

  position: absolute;

  inset-block: 0;

  left: 50%;

  width: 100vw;

  transform:
    translateX(-50%);

  z-index: -1;

  background:
    rgba(234,240,207,0);

  border-bottom:
    1px solid rgba(23,50,15,0);

  transition:
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.site-header.scrolled::before {
  background:
    var(--header-scroll);

  border-bottom-color:
    rgba(23,50,15,.08);

  box-shadow:
    0 5px 22px
    rgba(23,50,15,.09);

  backdrop-filter:
    blur(16px)
    saturate(115%);

  -webkit-backdrop-filter:
    blur(16px)
    saturate(115%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.brand-logo {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.brand-wordmark {
  width: 126px;
  height: auto;
  object-fit: contain;
}

.header-contract {
  justify-self: center;

  min-width: 0;

  display: flex;

  align-items: center;

  gap: 7px;

  padding:
    7px 13px;

  border:
    1px solid rgba(23,50,15,.10);

  border-radius:
    999px;

  background:
    rgba(255,255,255,.24);

  white-space: nowrap;

  font-size: .72rem;
}

.header-contract-label {
  color:
    rgba(23,50,15,.58);

  font-weight: 700;
}

.header-contract-value {
  color: var(--ink);

  font-weight: 900;

  overflow: hidden;

  text-overflow: ellipsis;

  max-width: 230px;
}

.nav {
  display: flex;

  align-items: center;

  gap: 26px;

  color: var(--ink);

  font-size: .88rem;

  font-weight: 750;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;

  bottom: -5px;

  height: 2px;

  background:
    var(--leaf);

  transition:
    right .22s ease;
}

.nav a:hover::after {
  right: 0;
}

.menu-button {
  display: none;

  width: 37px;
  height: 37px;

  border:
    1px solid var(--line);

  border-radius:
    12px;

  background:
    rgba(255,255,255,.35);

  padding: 8px;
}

.menu-button span {
  display: block;

  height: 2px;

  margin: 4px 0;

  background:
    var(--ink);
}


/* HERO */

.hero {
  min-height:
    calc(100vh - 64px);

  display: grid;

  grid-template-columns:
    .95fr 1.05fr;

  align-items: center;

  gap: 24px;

  padding:
    46px 0 92px;
}

.eyebrow {
  margin:
    0 0 18px;

  color:
    var(--leaf-dark);

  font-size: .76rem;

  font-weight: 900;

  letter-spacing: .16em;
}

.hero h1,
.section-heading h2,
.community h2 {
  margin: 0;

  font-size:
    clamp(4rem,8.2vw,8rem);

  line-height: .82;

  letter-spacing: -.085em;

  font-weight: 950;
}

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

.hero-text {
  max-width: 560px;

  margin:
    30px 0 0;

  color:
    var(--ink-soft);

  font-size:
    clamp(1rem,1.4vw,1.22rem);

  line-height: 1.65;
}

.hero-actions {
  display: flex;

  gap: 12px;

  margin-top: 34px;

  flex-wrap: wrap;
}

.button {
  min-height: 52px;

  padding:
    0 22px;

  display:
    inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 999px;

  font-size: .92rem;

  font-weight: 850;

  transition:
    transform .2s ease;
}

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

.button-primary {
  color:
    var(--white);

  background:
    var(--ink);
}

.button-secondary {
  border:
    1px solid var(--line);

  background:
    rgba(255,255,255,.42);
}

.button-dark {
  margin-top: 22px;

  color: white;

  background:
    #11240c;
}


/* HERO ART */

.hero-art {
  position: relative;

  width:
    min(620px,100%);

  aspect-ratio:
    1 / 1;

  margin-inline:
    auto;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 46%,
      #eeffbc 0%,
      #dbf48f 46%,
      rgba(197,230,109,.82) 72%,
      rgba(186,219,95,.45) 100%
    );
}

.hero-art img {
  position: relative;

  z-index: 3;

  width: 88%;
  height: 88%;

  object-fit: contain;

  animation:
    float 5s
    ease-in-out
    infinite;
}

.hero-shadow {
  position: absolute;

  left: 24%;

  bottom: 7%;

  width: 52%;
  height: 7%;

  border-radius: 50%;

  background:
    rgba(28,54,17,.16);

  filter:
    blur(17px);
}

@keyframes float {

  50% {
    transform:
      translateY(-12px);
  }
}


/* MARKET TICKER */

.market-ticker {
  width: 100%;

  overflow: hidden;

  color:
    #f4f7df;

  background:
    #17320f;

  border-top:
    1px solid
    rgba(255,255,255,.07);

  border-bottom:
    1px solid
    rgba(255,255,255,.08);
}

.market-ticker-track {
  width:
    max-content;

  display: flex;

  align-items: center;

  will-change:
    transform;

  animation:
    marketTickerMove
    22s
    linear
    infinite;
}

.market-ticker-group {
  flex:
    0 0 auto;

  height: 50px;

  display: flex;

  align-items: center;

  gap: 38px;

  padding-right: 38px;

  white-space: nowrap;
}

.market-ticker-item {
  display:
    inline-flex;

  align-items: center;

  gap: 8px;

  font-size: .80rem;

  letter-spacing: .065em;
}

.ticker-label {
  color:
    rgba(255,255,255,.58);

  font-weight: 750;
}

.ticker-value {
  color:
    #f7f8e9;

  font-weight: 950;
}

.contract-ticker-value {
  color:
    #cee99a;
}

.ticker-star {
  color:
    rgba(216,239,156,.48);
}

@keyframes marketTickerMove {

  from {
    transform:
      translate3d(0,0,0);
  }

  to {
    transform:
      translate3d(-50%,0,0);
  }
}


/* CHART */

.chart-section {
  padding:
    96px 0 110px;

  color: white;

  background:
    radial-gradient(
      circle at 77% 8%,
      rgba(135,188,73,.19),
      transparent 33%
    ),
    #11280d;
}

.chart-section .eyebrow {
  color:
    #cae49a;
}

.chart-heading {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: end;

  gap: 80px;

  margin-bottom: 44px;
}

.chart-heading h2 {
  margin: 0;

  font-size:
    clamp(3.3rem,5.4vw,5.7rem);

  line-height: .85;

  letter-spacing: -.075em;

  font-weight: 950;
}

.chart-brand-copy {
  max-width: 500px;

  justify-self: end;
}

.chart-status {
  display: inline-flex;

  padding:
    10px 14px;

  color:
    #ddf5a3;

  background:
    rgba(216,239,156,.10);

  border:
    1px solid
    rgba(216,239,156,.26);

  border-radius: 999px;

  font-size: .69rem;

  font-weight: 900;
}

.chart-brand-copy h3 {
  margin:
    21px 0 0;

  font-size:
    clamp(1.8rem,2.7vw,3.1rem);

  line-height: 1.05;
}

.chart-brand-copy h3 strong {
  color:
    #a9dc63;
}

.chart-brand-copy p {
  max-width: 490px;

  color:
    rgba(255,255,255,.67);

  line-height: 1.65;
}

.contract-box {
  width:
    fit-content;

  margin-top: 24px;

  padding:
    11px 15px;

  display: flex;

  gap: 15px;

  border:
    1px solid
    rgba(255,255,255,.13);

  border-radius: 12px;

  background:
    rgba(0,0,0,.17);
}

.contract-label {
  color:
    rgba(255,255,255,.45);

  font-size: .65rem;

  font-weight: 900;
}

.contract-address {
  color:
    #d8ef9c;

  font-size: .72rem;

  font-weight: 900;
}

.chart-frame {
  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.11);

  border-radius: 26px;

  background:
    #0c1c09;
}

.chart-topbar {
  height: 66px;

  padding:
    0 24px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom:
    1px solid
    rgba(255,255,255,.08);
}

.chart-token {
  font-weight: 950;
}

.chart-pair {
  margin-left: 5px;

  color:
    rgba(255,255,255,.45);
}

.chart-network {
  display: flex;

  align-items: center;

  gap: 8px;

  color:
    #cdec95;

  font-size: .69rem;

  font-weight: 900;
}

.base-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    #a2d85c;
}

.chart-placeholder {
  position: relative;

  height: 430px;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(255,255,255,.033)
      1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.033)
      1px,
      transparent 1px
    );

  background-size:
    60px 60px;
}

.fake-chart-lines {
  position: absolute;

  inset: 0;
}

.fake-chart-lines svg {
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;

  stroke:
    #9bd156;

  stroke-width: 5;

  vector-effect:
    non-scaling-stroke;
}

.chart-area {
  fill:
    url(#chartFill);
}

.chart-coming-soon {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%,-50%);

  width:
    min(88%,460px);

  padding: 26px;

  text-align: center;

  color: white;

  background:
    rgba(8,20,6,.82);

  border:
    1px solid
    rgba(255,255,255,.11);

  border-radius: 22px;
}

.chart-coming-soon span {
  color:
    #d7efa0;

  font-size: .67rem;

  font-weight: 900;
}

.chart-coming-soon h3 {
  margin:
    10px 0 0;

  font-size:
    clamp(1.8rem,3.2vw,3.2rem);

  line-height: .96;
}

.chart-coming-soon p {
  color:
    rgba(255,255,255,.60);
}


/* ABOUT */

.about,
.roadmap {
  padding:
    132px 0;
}

.about-grid {
  margin-top: 54px;

  display: grid;

  grid-template-columns:
    1.5fr .75fr .75fr;

  gap: 16px;

  align-items: stretch;
}

.about-card {
  min-height: 310px;

  padding: 30px;

  border:
    1px solid var(--line);

  border-radius:
    var(--radius-xl);

  background:
    rgba(255,255,255,.43);
}

.about-card-main {
  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.about-card-main > p {
  margin: 0;

  font-size:
    clamp(1.2rem,2vw,1.75rem);

  font-weight: 700;

  line-height: 1.4;
}

.pill-row {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}

.pill-row span,
.status-chip {
  padding:
    9px 12px;

  border-radius: 999px;

  background:
    var(--lime);

  font-size: .75rem;

  font-weight: 900;
}


/* FLIP VIDEO CARDS */

.flip-card {
  min-height: 310px;

  perspective: 1200px;

  border-radius:
    var(--radius-xl);
}

.flip-card-inner {
  position: relative;

  width: 100%;
  height: 100%;

  min-height: 310px;

  transition:
    transform .32s
    cubic-bezier(.2,.85,.25,1);

  transform-style:
    preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
  transform:
    rotateY(180deg);
}

.flip-card-face {
  position: absolute;

  inset: 0;

  overflow: hidden;

  border-radius:
    var(--radius-xl);

  backface-visibility:
    hidden;

  -webkit-backface-visibility:
    hidden;
}

.flip-card-front {
  background:
    #0f2410;
}

.flip-card-back {
  transform:
    rotateY(180deg);

  padding: 30px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  color: white;
}

.card-back-dark {
  background:
    #17320f;
}

.card-back-green {
  background:
    linear-gradient(
      145deg,
      #5b9037,
      #3c6d27
    );
}

.card-video {
  width: 100%;
  height: 100%;

  min-height: 310px;

  display: block;

  object-fit: cover;
}

.video-card-label {
  position: absolute;

  left: 18px;
  bottom: 18px;

  padding:
    8px 12px;

  color: white;

  background:
    rgba(15,36,16,.74);

  border:
    1px solid
    rgba(255,255,255,.20);

  border-radius:
    999px;

  font-size: .67rem;

  font-weight: 900;

  letter-spacing: .12em;

  backdrop-filter:
    blur(8px);
}

.fact-number {
  font-size: 5rem;

  line-height: 1;

  font-weight: 950;

  letter-spacing: -.08em;
}

.flip-card-back p {
  margin: 0;

  color:
    rgba(255,255,255,.78);

  line-height: 1.5;
}


/* GALLERY */

.gallery-section {
  padding:
    132px 0;

  color: white;

  background:
    #17320f;
}

.gallery-section .eyebrow {
  color:
    #cde494;
}

.split-heading {
  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 40px;
}

.section-note {
  max-width: 420px;

  color:
    rgba(255,255,255,.65);
}

.gallery-grid {
  margin-top: 58px;

  display: grid;

  grid-template-columns:
    1.5fr .75fr .75fr;

  gap: 16px;
}

.nft-card {
  min-height: 520px;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.14);

  border-radius:
    var(--radius-xl);
}

.featured-card {
  color:
    var(--ink);

  background:
    #e8efcf;
}

.nft-image {
  min-height: 410px;

  display: grid;

  place-items: center;
}

.nft-image img {
  width: 78%;

  max-height: 400px;

  object-fit: contain;
}

.nft-meta {
  padding:
    20px 22px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.placeholder-card {
  padding: 24px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background:
    rgba(255,255,255,.06);
}

.placeholder-symbol {
  width: 64px;
  height: 64px;

  display: grid;

  place-items: center;

  border:
    1px solid
    rgba(255,255,255,.24);

  border-radius: 50%;

  font-size: 2rem;
}


/* ROADMAP */

.roadmap-list {
  margin-top: 58px;

  border-top:
    1px solid var(--line);
}

.roadmap-item {
  padding:
    32px 0;

  display: grid;

  grid-template-columns:
    70px 1fr auto;

  gap: 22px;

  align-items: center;

  border-bottom:
    1px solid var(--line);
}

.roadmap-item h3 {
  margin: 0;
}


/* COMMUNITY */

.community {
  padding:
    28px 0;
}

.community-inner {
  padding: 80px;

  color: white;

  border-radius: 42px;

  background:
    linear-gradient(
      145deg,
      #4d7a2c,
      #183510
    );
}


/* FOOTER */

.footer {
  min-height: 180px;

  margin-top: 70px;

  display: grid;

  grid-template-columns:
    1fr auto auto;

  align-items: center;

  gap: 24px;

  border-top:
    1px solid var(--line);

  font-size: .85rem;
}

.footer .brand-logo {
  width: 35px;
  height: 35px;
}

.footer .brand-wordmark {
  width: 126px;
}


/* REVEAL */

.reveal {
  opacity: 0;

  transform:
    translateY(22px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* TABLET */

@media (max-width: 1080px) {

  .header-contract {
    display: none;
  }

  .site-header {
    grid-template-columns:
      auto 1fr auto;
  }
}

@media (max-width: 960px) {

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

  .chart-heading {
    grid-template-columns:
      1fr;
  }

  .chart-brand-copy {
    justify-self:
      start;
  }

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

  .about-card-main {
    grid-column:
      1 / -1;
  }

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

  .featured-card {
    grid-column:
      1 / -1;
  }
}


/* MOBILE */

@media (max-width: 720px) {

  .site-header {
    height: 58px;

    display: flex;

    justify-content:
      space-between;
  }

  .brand-logo {
    width: 31px;
    height: 31px;
  }

  .brand-wordmark {
    width: 110px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;

    top: 55px;

    left: 0;
    right: 0;

    display: none;

    padding: 18px;

    flex-direction: column;

    align-items: stretch;

    background:
      rgba(234,240,207,.97);

    border-radius: 18px;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .market-ticker-group {
    height: 46px;

    gap: 28px;

    padding-right: 28px;
  }

  .market-ticker-item {
    font-size: .72rem;
  }

  .chart-placeholder {
    height: 360px;
  }

  .about-grid,
  .gallery-grid {
    grid-template-columns:
      1fr;
  }

  .about-card-main,
  .featured-card {
    grid-column: auto;
  }

  .flip-card,
  .flip-card-inner,
  .card-video {
    min-height: 380px;
  }

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

    padding:
      40px 0;
  }
}
