:root {
  --navy: #1a2f6b;
  --navy-deep: #12224f;
  --sky: #7ec8e8;
  --sky-soft: #c9e8f7;
  --meadow: #4f8f4a;
  --meadow-deep: #2f5d36;
  --ginger: #d9843a;
  --ginger-deep: #b8611f;
  --collar: #d62828;
  --cream: #f7f3e8;
  --cream-warm: #fff8ef;
  --foam: #ffffff;
  --ink: #1e2a3a;
  --muted: #5a6b7d;
  --gold: #f0c35a;
  --lavender: #b9a6d8;
  --shadow: 0 18px 50px rgba(18, 34, 79, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 78px;
  --ca: "Bp8geX7ycQkZhpN5mcQny74v1LK5pJ49LuorEf4rpump";
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(126, 200, 232, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 5%, rgba(240, 195, 90, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(79, 143, 74, 0.22), transparent 55%),
    linear-gradient(180deg, #e8f5fc 0%, #f7f3e8 42%, #eef6e8 100%);
}

.sky-wash,
.meadow-glow,
.sun-flare {
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.sky-wash {
  top: -20%;
  left: -10%;
  width: 70%;
  height: 55%;
  background: radial-gradient(circle, rgba(126, 200, 232, 0.35), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}

.meadow-glow {
  bottom: -15%;
  right: -10%;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle, rgba(79, 143, 74, 0.25), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

.sun-flare {
  top: 8%;
  right: 12%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 170, 0.75) 0%, rgba(240, 195, 90, 0.25) 35%, transparent 70%);
  filter: blur(2px);
  animation: pulse-soft 6s ease-in-out infinite;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.7;
  animation: cloud-move linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.c1 {
  width: 140px;
  height: 42px;
  top: 12%;
  left: -10%;
  animation-duration: 48s;
}
.c1::before {
  width: 60px;
  height: 60px;
  top: -28px;
  left: 18px;
}
.c1::after {
  width: 48px;
  height: 48px;
  top: -18px;
  left: 60px;
}

.c2 {
  width: 180px;
  height: 48px;
  top: 22%;
  left: -20%;
  animation-duration: 62s;
  animation-delay: -12s;
}
.c2::before {
  width: 70px;
  height: 70px;
  top: -34px;
  left: 28px;
}
.c2::after {
  width: 54px;
  height: 54px;
  top: -22px;
  left: 84px;
}

.c3 {
  width: 120px;
  height: 36px;
  top: 8%;
  left: -15%;
  animation-duration: 55s;
  animation-delay: -28s;
  opacity: 0.45;
}
.c3::before {
  width: 50px;
  height: 50px;
  top: -24px;
  left: 16px;
}
.c3::after {
  width: 40px;
  height: 40px;
  top: -16px;
  left: 52px;
}

#petal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 232, 0.78);
  border-bottom: 1px solid rgba(26, 47, 107, 0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--foam);
  box-shadow: 0 8px 20px rgba(26, 47, 107, 0.18);
}

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

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.brand-text small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  margin-left: auto;
}

.nav-links a {
  font-weight: 700;
  color: var(--navy-deep);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ginger), var(--collar));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 47, 107, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(26, 47, 107, 0.16);
  background: var(--foam);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-body);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-nav {
  background: var(--navy);
  color: white;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 10px 24px rgba(26, 47, 107, 0.25);
}

.btn-nav:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
}

.btn-primary {
  background: linear-gradient(135deg, var(--collar), #ff5a4a 45%, var(--ginger));
  color: white;
  box-shadow: 0 14px 30px rgba(214, 40, 40, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 36px rgba(214, 40, 40, 0.35);
}

.btn-secondary {
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 30px rgba(26, 47, 107, 0.22);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--navy-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(26, 47, 107, 0.12);
  color: var(--navy);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: white;
}

.btn-small {
  padding: 0.55rem 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-copy {
  padding: 0.55rem 0.95rem;
  background: var(--navy);
  color: white;
  border-radius: 999px;
}

.btn-copy.copied {
  background: var(--meadow);
}

.icon-dex {
  filter: brightness(0) saturate(100%) invert(48%) sepia(18%) saturate(1400%) hue-rotate(118deg) brightness(0.95);
}

.icon-btn img[src*="x.svg"],
.btn-ghost .btn-icon[src*="x.svg"],
.social-card img[src*="x.svg"],
.market-chip img[src*="x.svg"] {
  filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(1800%) hue-rotate(205deg) brightness(0.95);
}

.icon-btn img[src*="tiktok.svg"],
.social-card img[src*="tiktok.svg"] {
  filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(1800%) hue-rotate(205deg) brightness(0.95);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: 2.5rem 1.25rem 4rem;
  display: flex;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-a {
  width: 320px;
  height: 320px;
  background: rgba(217, 132, 58, 0.22);
  top: 8%;
  left: 4%;
  animation: float-y 7s ease-in-out infinite;
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  background: rgba(126, 200, 232, 0.28);
  bottom: 10%;
  right: 6%;
  animation: float-y 9s ease-in-out infinite reverse;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 47, 107, 0.1);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1rem;
}

.pill-icon {
  width: 18px;
  height: 18px;
}

.hero-title {
  margin: 0;
  line-height: 0.92;
}

.title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 800;
  color: var(--foam);
  -webkit-text-stroke: 5px var(--navy);
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 0 rgba(26, 47, 107, 0.15);
  animation: title-pop 1s ease both;
}

.title-sub {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.ticker-badge {
  display: inline-flex;
  margin: 1rem 0 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--meadow), #6bb86a);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(47, 93, 54, 0.25);
}

.hero-lead {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy-deep);
  max-width: 36rem;
  margin: 0 0 0.65rem;
}

.hero-story {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 0 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ca-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 47, 107, 0.1);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.ca-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

#ca-text {
  flex: 1;
  min-width: 140px;
  font-size: 0.92rem;
  color: var(--navy);
  word-break: break-all;
}

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

.logo-frame {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 3px dashed rgba(26, 47, 107, 0.18);
  animation: spin 28s linear infinite;
}

.logo-ring.ring-2 {
  inset: 0;
  border-style: solid;
  border-color: rgba(217, 132, 58, 0.28);
  animation-direction: reverse;
  animation-duration: 36s;
}

.hero-logo {
  width: 78%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid white;
  box-shadow:
    0 0 0 6px rgba(26, 47, 107, 0.08),
    0 28px 60px rgba(26, 47, 107, 0.22);
  animation: float-y 5.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.paw-burst span {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--navy);
  border-radius: 50% 50% 50% 10%;
  opacity: 0.22;
  animation: paw-pop 4.5s ease-in-out infinite;
  z-index: 1;
}

.paw-burst span:nth-child(1) { top: 8%; left: 18%; animation-delay: 0s; }
.paw-burst span:nth-child(2) { top: 18%; right: 10%; animation-delay: 0.8s; }
.paw-burst span:nth-child(3) { bottom: 14%; left: 8%; animation-delay: 1.4s; }
.paw-burst span:nth-child(4) { bottom: 8%; right: 18%; animation-delay: 2s; }

.float-chip {
  position: absolute;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 47, 107, 0.1);
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(26, 47, 107, 0.12);
  animation: float-y 6s ease-in-out infinite;
  z-index: 3;
}

.chip-spirit {
  top: 12%;
  left: 0;
  animation-delay: 0.4s;
}

.chip-chain {
  bottom: 16%;
  right: 0;
  animation-delay: 1.1s;
}

.scroll-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 36px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--navy), transparent);
  animation: scroll-pulse 1.6s ease-in-out infinite;
}

.section {
  padding: 5.5rem 1.25rem;
  position: relative;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(26, 47, 107, 0.08);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  color: var(--navy);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.about {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: start;
}

.about-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 47, 107, 0.08);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.about-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.trait-row {
  display: grid;
  gap: 0.9rem;
}

.trait {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.95), rgba(201, 232, 247, 0.45));
  border: 1px solid rgba(26, 47, 107, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trait:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trait-mark {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-weight: 800;
  font-family: var(--font-display);
}

.trait h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
}

.trait p {
  margin: 0.2rem 0 0;
  grid-column: 2;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.video-shell {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 47, 107, 0.08);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.video-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-weight: 800;
  color: var(--navy);
}

.video-label img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(1800%) hue-rotate(205deg) brightness(0.95);
}

.tiktok-embed-wrap {
  display: flex;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #f3f7fb, #eef4ea);
}

.howtobuy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(240, 195, 90, 0.18), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(79, 143, 74, 0.14), transparent 45%);
}

.buy-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.buy-step {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 47, 107, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.buy-step::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 200, 232, 0.35), transparent 70%);
}

.buy-step:hover {
  transform: translateY(-6px);
}

.step-num {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(145deg, var(--navy), #3a5bb8);
  box-shadow: 0 10px 20px rgba(26, 47, 107, 0.25);
  position: relative;
  z-index: 1;
}

.step-body {
  position: relative;
  z-index: 1;
}

.step-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
}

.step-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--collar);
}

.text-link img {
  width: 18px;
  height: 18px;
}

.buy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 47, 107, 0.1);
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(26, 47, 107, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-chip img {
  width: 22px;
  height: 22px;
}

.market-chip:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow);
}

.chart {
  background: linear-gradient(180deg, rgba(18, 34, 79, 0.02), rgba(18, 34, 79, 0.06));
}

.chart-shell {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 28px 60px rgba(18, 34, 79, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: white;
  font-weight: 800;
}

.chart-brand img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(110deg);
}

.chart-frame {
  height: min(640px, 75vh);
  background: #0b1224;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.joinus {
  padding-bottom: 4rem;
}

.banner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid white;
  margin-bottom: 1.75rem;
  background: linear-gradient(135deg, var(--sky), var(--meadow));
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.banner-frame:hover .join-banner {
  transform: scale(1.04);
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 47, 107, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  background: white;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(126, 200, 232, 0.35), rgba(79, 143, 74, 0.18));
}

.social-icon img {
  width: 22px;
  height: 22px;
}

.social-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.social-meta strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.15rem;
}

.social-meta small {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 1.25rem 2.5rem;
  border-top: 1px solid rgba(26, 47, 107, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
}

.footer-brand span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-note {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(40px, 24px, 0); }
}

@keyframes cloud-move {
  from { transform: translateX(0); }
  to { transform: translateX(130vw); }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes paw-pop {
  0%, 100% { transform: scale(0.85) rotate(20deg); opacity: 0.15; }
  50% { transform: scale(1.15) rotate(35deg); opacity: 0.35; }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.75); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

@keyframes title-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: rgba(247, 243, 232, 0.96);
    border-bottom: 1px solid rgba(26, 47, 107, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(26, 47, 107, 0.06);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .btn-nav {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .buy-steps,
  .social-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 340px;
  }

  .logo-frame {
    width: min(320px, 78vw);
  }

  .video-shell {
    position: static;
  }

  .chip-spirit,
  .chip-chain {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .title-main {
    -webkit-text-stroke-width: 3.5px;
  }

  .banner-frame {
    border-width: 3px;
    border-radius: 18px;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

  .float-chip {
    display: none;
  }
}

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

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