/* =========================
   Fonts
   ========================= */
@font-face{
  font-family: "Clash Grotesk";
  src: url("./ClashGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #fefffe;
  --text: #111111;

  --a1: #abb48c;
  --a2: #b89f97;

  --headerOffset: 0px;

  --headReveal: 0;
  --subReveal: 0;

  --tripleL1Reveal: 0;
  --tripleL2Reveal: 0;

  /* ✅ founder reveal vars (used by type-mask mapping below) */
  --founderTitleReveal: 0;
  --founderBodyReveal: 0;

  --ethX: 50vw;
  --ethY: 50vh;
  --ethOpacity: 0;
  --ethScale: 1;
  --ethGlowOpacity: 0.65;
  --ethGlowBlur: 10px;
  --ethCoreOpacity: 0.92;
  --ethCoreBlur: 0.9px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

main{ width: 100%; }

/* =========================
   ETH Cursor
   ========================= */
#eth-cursor{
  position: fixed;
  left: 0;
  top: 0;

  width: 120px;
  height: 180px;

  pointer-events: none;
  z-index: 9999;

  opacity: var(--ethOpacity, 0);

  transform:
    translate3d(var(--ethX, 50vw), var(--ethY, 50vh), 0)
    translate(-50%, -50%)
    scale(var(--ethScale, 1));

  will-change: transform, opacity;
}

.eth-svg{ width: 100%; height: 100%; display: block; }
.eth-path--glow{ opacity: var(--ethGlowOpacity, 0.65); filter: blur(var(--ethGlowBlur, 10px)); }
.eth-path--core{ opacity: var(--ethCoreOpacity, 0.9); filter: blur(var(--ethCoreBlur, 0.9px)); }

/* =========================
   HEADER
   ========================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  /* ✅ reduced padding so header height matches smaller logo */
  padding: 2px 8px;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  background: var(--bg);
}

/* center group */
.header-center{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-glint{
  position: relative;
  display: inline-grid;
  place-items: center;
}

.logo-glint::after{
  content:"";
  position: absolute;
  inset: -25%;
  pointer-events: none;
  opacity: 0;
  z-index: 3;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 38%,
    rgba(255,255,255,0.90) 50%,
    rgba(255,255,255,0) 62%
  );
  transform: translateX(-70%) translateY(10%);
  mix-blend-mode: screen;
  filter: blur(0.4px);
}

/* ✅ slowed by 50%: 1050ms -> 1575ms */
.logo-glint.glint::after{
  animation: logoGlint 1575ms cubic-bezier(.2,.8,.2,1) 1;
}

@keyframes logoGlint{
  0%   { opacity: 0; transform: translateX(-75%) translateY(12%); }
  16%  { opacity: 0.55; }
  55%  { opacity: 0.70; }
  100% { opacity: 0; transform: translateX(75%) translateY(-12%); }
}

/* ✅ header logo reduced by 40% */
.text-logo{
  width: min(228px, 25.2vw); /* was min(380px, 42vw) */
  height: auto;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  will-change: opacity;
  transform: translateY(10px);
}

/* Desktop buttons */
.header-actions{
  position: absolute;
  top: 50%;
  right: 10px;            /* was 16px */
  transform: translateY(-50%);
  display: flex;
  gap: 8px;               /* was 10px */
  z-index: 60;
}

/* =========================
   Mobile hamburger menu
   ========================= */
.mobile-menu{
  position: relative;
  display: none;
}

.menu-btn{
  width: 42px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(17,17,17,0.10);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.menu-btn:hover{
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(17,17,17,0.10);
}

.menu-icon{
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  position: relative;
  border-radius: 2px;
}
.menu-icon::before,
.menu-icon::after{
  content:"";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
}
.menu-icon::before{ top: -6px; }
.menu-icon::after{ top: 6px; }

.menu-panel{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 160px;

  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(17,17,17,0.16);
  backdrop-filter: blur(16px);

  padding: 8px;
  display: none;
  z-index: 80;
}

.mobile-menu.open .menu-panel{ display: grid; gap: 6px; }

.menu-item{
  appearance: none;
  border: 1px solid rgba(17,17,17,0.10);
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;

  font: 500 13px/1 "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(17,17,17,0.9);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.menu-item:hover{
  transform: scale(1.02);
  box-shadow: 0 14px 36px rgba(17,17,17,0.10);
}

/* =========================
   Buttons
   ========================= */
.pill-btn{
  --g: linear-gradient(90deg, var(--a1), var(--a2));
  position: relative;
  isolation: isolate;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;

  /* ✅ reduced to suit smaller header */
  padding: 8px 12px; /* was 9px 14px */

  font: 500 12px/1 "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.01em;
  color: var(--text);

  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--g) border-box;

  box-shadow: 0 10px 30px rgba(17,17,17,0.08);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 220ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill-btn::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background: var(--g);
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: -1;
}

.pill-btn::before{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.12) 55%,
    rgba(255,255,255,0)
  );
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 0;
  pointer-events: none;
}

.pill-btn:hover{
  transform: scale(1.045);
  box-shadow: 0 16px 40px rgba(17,17,17,0.12);
}
.pill-btn:hover::after{ opacity: 0.26; }
.pill-btn:hover::before{ opacity: 0.9; }

.pill-btn:active{
  transform: scale(1.015);
  filter: brightness(0.98);
}

.header-actions .pill-btn{
  opacity: 0;
  transform: translateY(6px);
}
.site-header.show-actions .header-actions .pill-btn{
  opacity: 1;
  transform: translateY(0);
}
.site-header.show-actions .header-actions .pill-btn:nth-child(1){ transition-delay: 120ms; }
.site-header.show-actions .header-actions .pill-btn:nth-child(2){ transition-delay: 240ms; }

.pill-btn--solid{
  background:
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.35)) padding-box,
    var(--g) border-box;
}
.pill-btn--solid::after{ opacity: 0.18; }

/* =========================
   Modal
   ========================= */
.cs-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}
.cs-modal.is-open{ pointer-events: auto; opacity: 1; }

.cs-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.25);
  backdrop-filter: blur(8px);
}

.cs-card{
  position: relative;
  width: min(420px, calc(100vw - 40px));
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 30px 80px rgba(17,17,17,0.22);
  backdrop-filter: blur(18px);
  text-align: center;
}

.cs-x{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(17,17,17,0.10);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font: 500 20px/1 "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(17,17,17,0.8);
  display: grid;
  place-items: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.cs-x:hover{ transform: scale(1.04); box-shadow: 0 16px 40px rgba(17,17,17,0.12); }

.cs-title{
  margin: 4px 0 10px;
  font: 600 16px/1.2 "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.01em;
}

.cs-body{
  font: 400 14px/1.45 "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(17,17,17,0.88);
  margin: 0 auto 14px;
  max-width: 360px;
}

.cs-actions{ display: flex; justify-content: center; }

/* =========================
   HERO
   ========================= */
#hero{ position: relative; width: 100%; }

.sticky-stage{
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: var(--headerOffset);
}

.seq-img{
  width: min(1080px, 92vw);
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
  will-change: opacity;

  clip-path: inset(0 25% 0 25%);
  transform: scale(1.12);
}

.scroll-hint{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;

  color: #abb48c;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;

  user-select: none;
  pointer-events: none;
}

/* ✅ STATIC scroll hint variant (prevents “floating” prompt between sections) */
.scroll-hint--static{
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 10px auto 0;
}

.after-triple-hint{
  width: 100%;
  padding: 6px 0 0;
}

.hint-line{
  width: 1px;
  height: 24px;
  background: #b89f97;
  transform-origin: top;
  animation: hint 1.35s ease-in-out infinite;
}

@keyframes hint{
  0%,100%{ transform: scaleY(0.45); opacity: 0.55; }
  50%{ transform: scaleY(1); opacity: 1; }
}

.hero-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  transform: translateY(-60px);
}

.hero-head{
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(34px, 5vw, 64px);
}

.hero-sub{
  margin: 32px 0 0;
  font-size: clamp(16px, 1.9vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #111;
}

.c-eth{ color: #737373; }
.c-yield{ color: #abb48c; }
.c-soft{ color: #b89f97; }

/* typing mask + shimmer */
.type-mask{
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 0.22em;
  padding-top: 0.06em;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--_reveal)) 0 0);
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* ✅ Multiline type-mask (for Founder only) */
.type-mask--multiline{
  white-space: normal;
  display: block;
}

.type-mask.shimmer::after{
  content:"";
  position:absolute;
  top:-25%;
  left:-70%;
  width: 90%;
  height: 180%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.90) 45%,
    rgba(255,255,255,0.00) 100%
  );
  transform: skewX(-18deg) translateX(0);
  filter: blur(0.4px);
  animation: shimmerSwipe 820ms ease-out forwards;
  pointer-events:none;
}

@keyframes shimmerSwipe{
  from { transform: skewX(-18deg) translateX(-10%); opacity: 1; }
  to   { transform: skewX(-18deg) translateX(260%); opacity: 0; }
}

.type-mask.flash::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(171,180,140,0.0),
    rgba(171,180,140,0.9),
    rgba(184,159,151,0.9),
    rgba(184,159,151,0.0)
  );
  transform: scaleX(0.08);
  transform-origin: center;
  opacity: 0;
  animation: flashPing 520ms ease-out forwards;
  pointer-events:none;
}

@keyframes flashPing{
  0%   { opacity: 0; transform: scaleX(0.10); }
  25%  { opacity: 0.95; transform: scaleX(1.0); }
  100% { opacity: 0; transform: scaleX(1.2); }
}

#type-head{ --_reveal: calc(var(--headReveal) * 100%); }
#type-sub{ --_reveal: calc(var(--subReveal) * 100%); }
#type-triple-1{ --_reveal: calc(var(--tripleL1Reveal) * 100%); }
#type-triple-2{ --_reveal: calc(var(--tripleL2Reveal) * 100%); }

/* ✅ founder reveal uses same mechanism */
#type-founder-title{ --_reveal: calc(var(--founderTitleReveal) * 100); }
#type-founder-body{  --_reveal: calc(var(--founderBodyReveal) * 100); }

/* =========================
   VIDEO
   ========================= */
.video-section{ padding: 26px 20px 10px; }
.video-inner{ width: min(980px, 92vw); margin: 0 auto; }
.main-video{ width: 100%; height: auto; border-radius: 18px; background: #000; }

.scroll-hint--below-video{
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 6px auto 0;
}

/* =========================
   TRIPLE
   ========================= */
.triple-section{ position: relative; width: 100%; }

.triple-stage{
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.triple-text{
  width: min(980px, 92vw);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.triple-text--top{ margin-top: calc(var(--headerOffset) + 2px); }
.triple-text--bottom{ margin-bottom: 2px; }

.triple-wrap{
  width: min(1100px, 92vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.triple-item{ pointer-events: none; cursor: default; outline: none; }
.triple-section.is-complete .triple-item{ pointer-events: auto; cursor: pointer; }

.triple-frame{
  position: relative;
  width: min(360px, 34vw);
  height: min(360px, 34vw);
  max-width: 360px;
  max-height: 360px;
  overflow: visible;
}

.triple-front{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
  will-change: opacity, transform, filter;
}

.triple-img{
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
  transform: scale(0);
  opacity: 0;
}

.triple-section.is-complete .triple-item:hover .triple-front,
.triple-section.is-complete .triple-item:focus-visible .triple-front,
.triple-section.is-complete .triple-item.is-flipped .triple-front{
  opacity: 0;
  transform: scale(0.97);
  filter: blur(0.2px);
}

@keyframes triplePulse {
  0%   { transform: scale(var(--baseScale, 1)); }
  35%  { transform: scale(calc(var(--baseScale, 1) * 1.06)); }
  70%  { transform: scale(calc(var(--baseScale, 1) * 0.985)); }
  100% { transform: scale(var(--baseScale, 1)); }
}

/* Pulse only when we intentionally trigger it */
.triple-section.pulse .triple-img{
  animation: triplePulse 520ms cubic-bezier(.2,.8,.2,1) 1;
  will-change: transform;
}

/* Optional: small stagger so it feels premium */
.triple-section.pulse #triple-esd { animation-delay: 0ms; }
.triple-section.pulse #triple-eth { animation-delay: 80ms; }
.triple-section.pulse #triple-fu3l{ animation-delay: 160ms; }


/* Card flip */
.mini-card{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.mini-card-inner{
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  opacity: 0;
  transform: rotateY(-180deg) rotateX(8deg) translateZ(18px);
  transform-origin: 50% 50%;
  will-change: transform, opacity;

  transition:
    opacity 220ms ease,
    transform 900ms cubic-bezier(.2,.8,.2,1);
  transition-delay: 0ms, 0ms;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.triple-section.is-complete .triple-item:hover .mini-card-inner,
.triple-section.is-complete .triple-item:focus-visible .mini-card-inner,
.triple-section.is-complete .triple-item.is-flipped .mini-card-inner{
  opacity: 1;
  transform: rotateY(0deg) rotateX(0deg) translateZ(18px);
  transition-delay: 170ms, 170ms;
  pointer-events: auto;
}

.mini-back{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,17,17,0.10);
  box-shadow: 0 22px 70px rgba(17,17,17,0.18);
  backdrop-filter: blur(18px);

  display: grid;
  place-items: center;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mini-back::after{
  content:"";
  position:absolute;
  inset: -70%;
  pointer-events: none;
  opacity: 0;
  z-index: 6;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 46%,
      rgba(255,255,255,0.96) 50%,
      rgba(255,255,255,0) 54%
    ),
    linear-gradient(
      120deg,
      rgba(171,180,140,0) 44%,
      rgba(171,180,140,0.55) 50%,
      rgba(184,159,151,0.00) 56%
    );

  transform: translateX(-74%) translateY(10%);
  filter: blur(0.25px);
}

.triple-section.is-complete .triple-item:hover .mini-back::after,
.triple-section.is-complete .triple-item:focus-visible .mini-back::after,
.triple-section.is-complete .triple-item.is-flipped .mini-back::after{
  animation: miniGlint 880ms cubic-bezier(.2,.8,.2,1) 1;
  animation-delay: 1070ms;
}

@keyframes miniGlint{
  0%   { opacity: 0; transform: translateX(-78%) translateY(12%); }
  18%  { opacity: 0.75; }
  55%  { opacity: 0.88; }
  100% { opacity: 0; transform: translateX(78%) translateY(-12%); }
}

.mini-content{
  position: relative;
  z-index: 7;
  width: 100%;
  height: 100%;
  padding: 14px 14px 12px;
  display: grid;
  gap: 10px;
  align-content: center;
  text-align: center;

  transform: translateZ(1px);
  -webkit-transform: translateZ(1px);
}

.mini-title{
  margin: 0;
  font: 500 13px/1.25 "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(17,17,17,0.88);
}

.mini-dash{ color: rgba(17,17,17,0.45); }

.mini-points{
  margin: 0;
  font: 400 12px/1.25 "Clash Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(17,17,17,0.78);
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-cta{ justify-self: center; min-width: 160px; }

/* =========================
   FOUNDER (new scroll frame)
   ========================= */
.founder-section{
  position: relative;
  width: 100%;
  height: 180vh; /* “frame” scroll window like others */
}

.founder-stage{
  background: var(--bg);
}

.founder-text{
  width: min(980px, 92vw);
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}

.founder-box{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;

  padding: 18px 18px;

  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,17,17,0.10);
  box-shadow: 0 22px 70px rgba(17,17,17,0.12);
  backdrop-filter: blur(16px);

  text-align: left;
}

.founder-title{
  margin: 0 0 12px;
}

.founder-paragraph{
  margin: 0;
  line-height: 1.35;
}

/* =========================
   Tap hints hidden by default (prevents desktop showing them)
   ========================= */
.tap-hint{ display: none; }

/* =========================
   Mobile rules
   ========================= */
@media (max-width: 860px){
  .header-center{
    width: 100%;
    position: relative;
    justify-content: center;
    gap: 0;
  }

  .header-actions{ display: none; }

  .mobile-menu{
    display: block;
    position: absolute;
    right: 12px;
    top: calc(50% + 6px);
    transform: translateY(-50%);
  }

  .text-logo{ width: min(156px, 37.2vw); }

  .type-mask{
    white-space: normal;
    display: inline;
    overflow: visible;
    clip-path: none;
  }

  .triple-wrap{ gap: 10px; }

  .triple-frame{
    width: min(120px, 28vw);
    height: min(120px, 28vw);
    max-width: 140px;
    max-height: 140px;
  }

  .mobile-menu .menu-panel{
    left: auto;
    right: 0;
    transform: none;
    width: min(180px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .mini-card,
  .mini-card-inner,
  .mini-back{
    display: none !important;
  }

  .triple-section.is-complete .triple-item:hover .triple-front,
  .triple-section.is-complete .triple-item:focus-visible .triple-front,
  .triple-section.is-complete .triple-item.is-flipped .triple-front{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .tap-hint{
    margin-top: 10px;
    display: grid;
    gap: 8px;
    align-items: center;
    justify-items: center;

    opacity: 0;
    transform: translateY(6px);
    transition: opacity 260ms ease, transform 260ms ease;

    user-select: none;
    pointer-events: none;
  }

  .tap-label{
    color: #abb48c;
    letter-spacing: 0.18em;
    font-size: 12px;
    text-transform: uppercase;
  }

  .tap-line{
    width: 1px;
    height: 20px;
    background: #b89f97;
    transform-origin: top;
    animation: hint 1.35s ease-in-out infinite;
  }

  .triple-section.is-complete .triple-item .tap-hint{
    opacity: 1;
    transform: translateY(0);
  }

  .triple-item.tap-used .tap-hint{
    opacity: 0 !important;
    transform: translateY(6px) !important;
  }

  .cs-card{
    padding-top: 54px;
  }

  .founder-section{
    height: 200vh;
  }

  .founder-box{
    padding: 14px 14px;
    border-radius: 16px;
  }

  .founder-paragraph{
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce){
  .hint-line{ animation: none; }
  #eth-cursor{ display: none !important; }
  .mini-card-inner{ transition: none !important; }
  .mini-back::after{ animation: none !important; }
  .logo-glint::after{ animation: none !important; }
}

