:root {
  --cream: #f7efe4;
  --cream-deep: #efe3d2;
  --paper: #fffaf3;
  --ink: #2a1a12;
  --ink-soft: #5c4336;
  --muted: #8a6b55;
  --orange: #ff7a1a;
  --orange-hot: #ff9a3c;
  --brown: #4a2c1a;
  --copper: #b87333;
  --copper-bright: #d99a55;
  --copper-deep: #8a4f22;
  --tear: #7ec8e8;
  --tear-soft: rgba(126, 200, 232, 0.35);
  --red-eye: #c43c2c;
  --shadow: rgba(74, 44, 26, 0.14);
  --radius: 22px;
  --font-display: "Cinzel", "Fraunces", "Copperplate", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* ---------- Atmosphere ---------- */
.grain,
.aurora,
#tears {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.aurora {
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(255, 154, 60, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(184, 115, 51, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 85%, rgba(126, 200, 232, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 20% 80%, rgba(255, 122, 26, 0.1), transparent 50%),
    linear-gradient(180deg, #f9f1e6 0%, #f3e6d4 45%, #efe0cb 100%);
  animation: aurora-shift 18s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-2%, 1%); }
}

.grain {
  z-index: 1;
  opacity: 0.35;
  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)' opacity='0.55'/%3E%3C/svg%3E");
}

#tears {
  z-index: 1;
}

main,
.nav,
.marquee,
.footer {
  position: relative;
  z-index: 2;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
  background: rgba(247, 239, 228, 0.78);
  border-bottom: 1px solid rgba(184, 115, 51, 0.18);
  z-index: 50;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 8px 30px var(--shadow);
  background: rgba(247, 239, 228, 0.92);
}

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

.nav-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 4px 14px var(--shadow);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-wordmark .ok,
.title-ok {
  color: var(--orange);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.nav-wordmark .dog,
.title-dog {
  color: var(--brown);
}

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

.nav-links > a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--copper));
  transition: width 0.25s ease;
}

.nav-links > a:not(.btn):hover {
  color: var(--copper-deep);
}

.nav-links > a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.25);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brown);
  transition: 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 115, 51, 0.2);
  background: linear-gradient(90deg, rgba(184, 115, 51, 0.12), rgba(255, 122, 26, 0.1), rgba(184, 115, 51, 0.12));
  padding: 0.65rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--copper-deep);
}

.marquee-track span::after {
  content: " · ";
  margin-left: 2.5rem;
  color: var(--orange);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 1.8rem;
  font-size: 1.05rem;
}

.btn-copper {
  color: #fffaf3;
  background: linear-gradient(145deg, var(--copper-bright) 0%, var(--copper) 45%, var(--copper-deep) 100%);
  box-shadow:
    0 8px 22px rgba(138, 79, 34, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-copper:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(138, 79, 34, 0.42);
}

.btn-outline {
  background: rgba(255, 250, 243, 0.7);
  border: 1.5px solid rgba(184, 115, 51, 0.45);
  color: var(--brown);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--copper);
  box-shadow: 0 8px 20px var(--shadow);
}

.btn-ghost {
  background: transparent;
  border: 1.5px dashed rgba(184, 115, 51, 0.4);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.icon-inline {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-outline .icon-inline,
.btn-ghost .icon-inline,
.footer-links .icon-inline {
  filter: none;
}

.btn-ghost .icon-x,
.footer-links .icon-x,
.social-card .icon-x {
  width: 18px;
  height: 18px;
}

.icon-x {
  width: 16px;
  height: 16px;
}

.pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 22px rgba(138, 79, 34, 0.35); }
  50% { box-shadow: 0 8px 28px rgba(255, 122, 26, 0.55); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem) 4rem;
  overflow: hidden;
}

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

.hero-orb-a {
  width: 320px;
  height: 320px;
  background: rgba(255, 154, 60, 0.45);
  top: 8%;
  left: -5%;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  background: rgba(126, 200, 232, 0.35);
  bottom: 10%;
  right: -4%;
  animation: orb-drift 14s ease-in-out infinite alternate-reverse;
}

@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(30px, -20px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--copper-deep);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(184, 115, 51, 0.25);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 10vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.hero-title .title-ok,
.hero-title .title-dog {
  display: inline;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 1rem;
  animation: soft-breathe 3.5s ease-in-out infinite;
}

@keyframes soft-breathe {
  0%, 100% { opacity: 0.85; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.hero-lead {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.ca-box {
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid rgba(184, 115, 51, 0.28);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  max-width: 34rem;
  box-shadow: 0 10px 30px var(--shadow);
}

.ca-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ca-row code {
  flex: 1;
  font-size: 0.82rem;
  color: var(--brown);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--orange-hot), var(--orange));
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 14px rgba(255, 122, 26, 0.35);
  transition: transform 0.2s;
}

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

.btn-copy.copied {
  background: linear-gradient(145deg, #5aa86a, #3d8a4f);
}

/* Hero stage / logo */
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.logo-halo {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 154, 60, 0.35) 0%, rgba(184, 115, 51, 0.12) 45%, transparent 70%);
  animation: halo-spin 16s linear infinite;
}

@keyframes halo-spin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.05); }
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(92%, 460px);
  filter: drop-shadow(0 25px 40px rgba(74, 44, 26, 0.25));
}

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

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

.spark {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 154, 60, 0.7));
}

.spark-1 { top: 12%; left: 18%; animation-delay: 0s; }
.spark-2 { top: 22%; right: 14%; animation-delay: 0.6s; width: 10px; height: 10px; }
.spark-3 { bottom: 24%; left: 12%; animation-delay: 1.1s; width: 12px; height: 12px; }
.spark-4 { bottom: 18%; right: 20%; animation-delay: 1.7s; width: 9px; height: 9px; }

@keyframes sparkle {
  0%, 100% { opacity: 0.35; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

.paw-stamp {
  position: absolute;
  bottom: 8%;
  right: 8%;
  z-index: 4;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--orange);
  background: rgba(255, 250, 243, 0.9);
  border: 3px solid var(--orange);
  border-radius: 16px;
  padding: 0.35rem 0.75rem;
  transform: rotate(-12deg);
  box-shadow: 0 8px 20px var(--shadow);
  animation: stamp-wiggle 4s ease-in-out infinite;
}

@keyframes stamp-wiggle {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.05); }
}

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

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scroll-drip 1.8s ease-in-out infinite;
}

@keyframes scroll-drip {
  0% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2.5rem);
}

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

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-eyebrow {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.copper-text {
  background: linear-gradient(120deg, var(--copper-deep), var(--copper-bright) 45%, var(--orange) 80%, var(--copper));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: copper-shine 6s linear infinite;
}

@keyframes copper-shine {
  to { background-position: 200% center; }
}

.section-sub {
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(255, 250, 243, 0.55) 20%, rgba(255, 250, 243, 0.55) 80%, transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.about-frame {
  position: relative;
  border-radius: 50%;
  padding: 0.8rem;
  background: linear-gradient(145deg, rgba(255, 154, 60, 0.4), rgba(184, 115, 51, 0.2), rgba(126, 200, 232, 0.25));
  box-shadow: 0 20px 50px var(--shadow);
}

.about-frame::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(184, 115, 51, 0.35);
  animation: spin-slow 24s linear infinite;
}

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

.about-img {
  width: 100%;
  border-radius: 50%;
  background: var(--paper);
}

.about-lead {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.12);
  border: 1px solid rgba(184, 115, 51, 0.28);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--copper-deep);
}

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

.trait {
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(184, 115, 51, 0.22);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 12px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trait:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(74, 44, 26, 0.18);
}

.trait-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.trait h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
  color: var(--brown);
}

.trait p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* How to buy */
.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(184, 115, 51, 0.22);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 10px 28px var(--shadow);
  transition: transform 0.25s ease;
}

.step:hover {
  transform: translateX(6px);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  background: linear-gradient(145deg, var(--copper-bright), var(--copper-deep));
  box-shadow: 0 8px 18px rgba(138, 79, 34, 0.3);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.step-body p {
  color: var(--ink-soft);
}

.howto-cta {
  text-align: center;
}

/* Chart */
.chart-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(184, 115, 51, 0.28);
  box-shadow: 0 18px 45px var(--shadow);
  background: #111;
  min-height: 520px;
  margin-bottom: 1.25rem;
}

.chart-frame iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.chart-link {
  display: inline-flex;
  margin: 0 auto;
}

.chart .section-inner {
  text-align: center;
}

/* Join us */
.joinus {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 154, 60, 0.15), transparent 60%),
    linear-gradient(180deg, transparent, rgba(255, 250, 243, 0.5));
}

.join-banner {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(184, 115, 51, 0.28);
  box-shadow: 0 22px 55px var(--shadow);
  margin-bottom: 1.75rem;
  background: var(--paper);
}

.banner-img {
  width: 100%;
  height: auto;
  animation: banner-breathe 7s ease-in-out infinite;
}

@keyframes banner-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 921px) {
  .socials {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.85);
  border: 1px solid rgba(184, 115, 51, 0.25);
  box-shadow: 0 12px 30px var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--copper);
  box-shadow: 0 18px 40px rgba(74, 44, 26, 0.18);
}

.social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.social-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown);
}

.social-handle {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(184, 115, 51, 0.2);
  padding: 2.5rem 1.25rem 3rem;
  background: rgba(239, 227, 210, 0.65);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  animation: float-soft 6s ease-in-out infinite;
}

.footer-bio {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--copper-deep);
  margin-bottom: 0.4rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(184, 115, 51, 0.28);
  transition: transform 0.2s, background 0.2s;
}

.footer-links a:hover {
  transform: translateY(-3px);
  background: white;
}

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

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

/* Responsive */
@media (max-width: 920px) {
  .hero-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
    min-height: 320px;
  }

  .hero-logo {
    width: min(78%, 340px);
  }

  .traits,
  .socials {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(247, 239, 228, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184, 115, 51, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links > a {
    padding: 0.85rem 0.5rem;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 520px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .paw-stamp {
    font-size: 1.2rem;
    bottom: 4%;
    right: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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