:root {
  --blush: #f8d4dc;
  --blush-deep: #f0b8c4;
  --rose: #e87b7b;
  --rose-hot: #f0958a;
  --rose-soft: #ffd4dc;
  --cream: #fff8f5;
  --cream-warm: #fff0eb;
  --ink: #3d2420;
  --ink-soft: #6b4540;
  --muted: #9a7068;
  --tabby: #8b5e4b;
  --copper: #b87333;
  --copper-bright: #d99a55;
  --copper-deep: #8a4f22;
  --copper-glow: rgba(217, 154, 85, 0.35);
  --tear: #c8e8f5;
  --shadow: rgba(61, 36, 32, 0.12);
  --shadow-deep: rgba(61, 36, 32, 0.22);
  --radius: 24px;
  --radius-pill: 999px;
  --font-display: "Cinzel Decorative", "Cinzel", "Copperplate", Georgia, serif;
  --font-copper: "Cinzel", "Copperplate", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 78px;
}

*,
*::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.65;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

/* ---------- Background layers ---------- */
.bg-knit,
.bg-glow,
.bg-sparkles,
#float-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-knit {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0b8c4' fill-opacity='0.18'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}

.bg-glow {
  background:
    radial-gradient(ellipse 80% 55% at 10% 5%, rgba(255, 212, 220, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 50% at 92% 12%, rgba(232, 123, 123, 0.2), transparent 50%),
    radial-gradient(ellipse 55% 45% at 75% 88%, rgba(248, 212, 220, 0.4), transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 75%, rgba(217, 154, 85, 0.1), transparent 50%),
    linear-gradient(175deg, #fff8f5 0%, #fff0eb 40%, #fce8ec 100%);
  animation: glow-drift 22s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, 1%); }
}

.bg-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6);
  animation: twinkle 3s ease-in-out infinite;
}

.bg-sparkles .sparkle:nth-child(1) { top: 8%; left: 12%; animation-delay: 0s; }
.bg-sparkles .sparkle:nth-child(2) { top: 18%; left: 78%; animation-delay: 0.4s; width: 3px; height: 3px; }
.bg-sparkles .sparkle:nth-child(3) { top: 32%; left: 45%; animation-delay: 0.8s; }
.bg-sparkles .sparkle:nth-child(4) { top: 55%; left: 8%; animation-delay: 1.2s; width: 5px; height: 5px; }
.bg-sparkles .sparkle:nth-child(5) { top: 68%; left: 88%; animation-delay: 0.2s; }
.bg-sparkles .sparkle:nth-child(6) { top: 82%; left: 35%; animation-delay: 1.6s; }
.bg-sparkles .sparkle:nth-child(7) { top: 42%; left: 92%; animation-delay: 0.6s; width: 3px; height: 3px; }
.bg-sparkles .sparkle:nth-child(8) { top: 75%; left: 62%; animation-delay: 1s; }
.bg-sparkles .sparkle:nth-child(9) { top: 12%; left: 55%; animation-delay: 2s; }
.bg-sparkles .sparkle:nth-child(10) { top: 48%; left: 22%; animation-delay: 1.4s; width: 5px; height: 5px; }
.bg-sparkles .sparkle:nth-child(11) { top: 90%; left: 15%; animation-delay: 0.3s; }
.bg-sparkles .sparkle:nth-child(12) { top: 25%; left: 30%; animation-delay: 1.8s; width: 3px; height: 3px; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

#float-canvas {
  z-index: 1;
}

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

/* ---------- Navigation ---------- */
.site-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(18px);
  background: rgba(255, 248, 245, 0.82);
  border-bottom: 1px solid rgba(232, 123, 123, 0.2);
  z-index: 50;
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-nav.scrolled {
  box-shadow: 0 10px 36px var(--shadow);
  background: rgba(255, 248, 245, 0.94);
}

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

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--rose-soft);
  box-shadow: 0 4px 16px var(--shadow);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.wm-ok {
  color: var(--rose);
}

.wm-wif {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.4rem);
}

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

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

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

.btn-copper {
  font-family: var(--font-copper);
  color: #fff;
  background: linear-gradient(135deg, var(--copper-bright) 0%, var(--copper) 45%, var(--copper-deep) 100%);
  box-shadow: 0 6px 24px var(--copper-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-copper:hover {
  box-shadow: 0 10px 32px var(--copper-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-copper.pulse {
  animation: copper-pulse 2.8s ease-in-out infinite;
}

@keyframes copper-pulse {
  0%, 100% { box-shadow: 0 6px 24px var(--copper-glow); }
  50% { box-shadow: 0 8px 36px rgba(217, 154, 85, 0.55); }
}

.btn-outline {
  font-family: var(--font-copper);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(232, 123, 123, 0.45);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--rose);
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(232, 123, 123, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

.icon-x {
  filter: brightness(0) saturate(100%);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(232, 123, 123, 0.22);
  background: rgba(255, 240, 235, 0.65);
  backdrop-filter: blur(6px);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.65rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-copper);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  white-space: nowrap;
}

.marquee-track span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--copper-bright);
  vertical-align: middle;
  transform: translateY(-1px);
}

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

/* ---------- 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) 3rem;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orb-float 14s ease-in-out infinite alternate;
}

.hero-orb-a {
  width: 380px;
  height: 380px;
  top: -8%;
  right: -5%;
  background: rgba(255, 180, 190, 0.35);
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -6%;
  background: rgba(217, 154, 85, 0.15);
  animation-delay: -4s;
}

.hero-orb-c {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 30%;
  background: rgba(248, 212, 220, 0.4);
  animation-delay: -8s;
}

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -15px) scale(1.08); }
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232, 123, 123, 0.25);
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}

.title-line {
  display: block;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
}

.title-ok {
  color: var(--rose);
}

.title-wif {
  color: var(--ink);
  margin-left: 0.15em;
}

.title-hat {
  display: block;
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  font-weight: 900;
  margin-top: -0.05em;
}

.copper-shine {
  background: linear-gradient(135deg, var(--copper-deep) 0%, var(--copper-bright) 35%, var(--copper) 65%, var(--copper-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: copper-shimmer 5s linear infinite;
}

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

.hero-tagline {
  font-family: var(--font-copper);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

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

.ca-box {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(232, 123, 123, 0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  max-width: 480px;
}

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

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

.ca-row code {
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--ink);
  flex: 1;
}

.btn-copy {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--copper-deep);
  background: rgba(217, 154, 85, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.35);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.btn-copy:hover {
  background: rgba(217, 154, 85, 0.28);
}

.btn-copy.copied {
  background: var(--copper);
  color: #fff;
}

/* Hero stage */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hat-ring {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.ring-outer {
  width: 105%;
  height: 105%;
  border-color: rgba(232, 123, 123, 0.2);
  animation: ring-spin 24s linear infinite;
}

.ring-mid {
  width: 92%;
  height: 92%;
  border-color: rgba(217, 154, 85, 0.25);
  border-style: dashed;
  animation: ring-spin 18s linear infinite reverse;
}

.ring-inner {
  width: 78%;
  height: 78%;
  border-color: rgba(255, 212, 220, 0.5);
  animation: ring-spin 30s linear infinite;
}

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

.hero-media {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  box-shadow:
    0 0 0 6px rgba(255, 212, 220, 0.6),
    0 0 0 12px rgba(232, 123, 123, 0.15),
    0 24px 60px var(--shadow-deep);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.hero-video.playing {
  opacity: 1;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.hero-logo.hidden {
  opacity: 0;
}

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

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

.paw-float {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e87b7b'%3E%3Cellipse cx='12' cy='16' rx='5' ry='4'/%3E%3Cellipse cx='6' cy='10' rx='2.5' ry='3'/%3E%3Cellipse cx='18' cy='10' rx='2.5' ry='3'/%3E%3Cellipse cx='9' cy='6' rx='2' ry='2.5'/%3E%3Cellipse cx='15' cy='6' rx='2' ry='2.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  animation: paw-drift 8s ease-in-out infinite;
}

.paw-1 { top: 5%; left: 10%; animation-delay: 0s; }
.paw-2 { bottom: 12%; right: 8%; animation-delay: -2.5s; width: 22px; height: 22px; }
.paw-3 { top: 30%; right: 0; animation-delay: -5s; width: 20px; height: 20px; }

@keyframes paw-drift {
  0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.25; }
  50% { transform: translateY(-18px) rotate(8deg); opacity: 0.45; }
}

.thumbs-badge {
  position: absolute;
  bottom: 8%;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--rose-soft);
  border-radius: var(--radius-pill);
  font-family: var(--font-copper);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--rose);
  box-shadow: 0 8px 24px var(--shadow);
  animation: badge-bob 3s ease-in-out infinite;
}

.thumb-icon {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e87b7b'%3E%3Cpath d='M9 11H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4v-10zm1 10h8V11h-8v10zm9-12a2 2 0 0 0-2-2h-3.5l1-3h-3l-1 3H9a2 2 0 0 0-2 2v1h14V9z'/%3E%3C/svg%3E");
  background-size: contain;
  transform: rotate(-15deg);
}

@keyframes badge-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--rose), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

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

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

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

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

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(255, 212, 220, 0.15) 50%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-deep);
}

.frame-knit {
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(135deg, var(--rose-soft), var(--rose), var(--copper-bright)) border-box;
  pointer-events: none;
  z-index: 2;
}

.about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.pill {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 123, 123, 0.35);
  color: var(--ink-soft);
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--ink-soft) !important;
}

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

.trait-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(232, 123, 123, 0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
}

.trait-num {
  font-family: var(--font-copper);
  font-size: 2rem;
  font-weight: 800;
  color: var(--rose-soft);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.trait-card h3 {
  font-family: var(--font-copper);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

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

/* How to buy */
.howtobuy {
  background: rgba(255, 240, 235, 0.5);
}

.steps {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 123, 123, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateX(6px);
  border-color: rgba(232, 123, 123, 0.45);
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-copper);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-hot), var(--rose));
  box-shadow: 0 4px 14px rgba(232, 123, 123, 0.35);
}

.step-body h3 {
  font-family: var(--font-copper);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

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

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

/* Chart */
.chart-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(232, 123, 123, 0.3);
  box-shadow: 0 20px 50px var(--shadow);
  background: #1a1210;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.5rem;
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 212, 220, 0.7);
  font-size: 0.95rem;
  z-index: 1;
}

.chart-placeholder code {
  color: var(--rose-hot);
  font-size: 0.85rem;
}

.chart-placeholder.hidden {
  display: none;
}

.chart-link {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

/* Join us */
.joinus {
  background: linear-gradient(180deg, transparent, rgba(248, 212, 220, 0.25));
}

.join-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 24px 60px var(--shadow-deep);
}

.banner-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(255, 180, 190, 0.4), transparent 65%);
  animation: banner-glow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes banner-glow {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

.banner-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

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

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 123, 123, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px var(--shadow);
  border-color: var(--rose);
}

.social-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.social-name {
  display: block;
  font-family: var(--font-copper);
  font-weight: 700;
  font-size: 1rem;
}

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

/* Footer */
.footer {
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(232, 123, 123, 0.22);
  background: rgba(255, 248, 245, 0.85);
  backdrop-filter: blur(12px);
}

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

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

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-bio {
  font-family: var(--font-copper);
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

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

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

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 123, 123, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-3px);
  border-color: var(--rose);
}

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

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

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead,
  .ca-box {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

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

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

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

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 248, 245, 0.97);
    border-bottom: 1px solid rgba(232, 123, 123, 0.25);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    gap: 1rem;
  }

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

  .nav-links a:not(.btn) {
    font-size: 1.05rem;
    padding: 0.5rem 0;
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

@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;
  }
}
