:root {
  --cream: #f3ebe0;
  --cream-deep: #e8dcc8;
  --paper: #faf6ef;
  --ink: #2a2118;
  --ink-soft: #5c4a3a;
  --ginger: #e8a05a;
  --ginger-deep: #c9783a;
  --peach: #f5d1b0;
  --dome: #f0c48a;
  --shadow: rgba(42, 33, 24, 0.12);
  --shadow-strong: rgba(42, 33, 24, 0.22);
  --radius: 1.75rem;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --nav-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 160, 90, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 5%, rgba(240, 196, 138, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232, 220, 200, 0.8), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 45%, var(--cream-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  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)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: blobDrift 18s ease-in-out infinite;
}

.blob-a {
  width: 28rem;
  height: 28rem;
  background: var(--peach);
  top: 12%;
  left: -8%;
}

.blob-b {
  width: 22rem;
  height: 22rem;
  background: var(--dome);
  top: 55%;
  right: -6%;
  animation-delay: -6s;
  animation-duration: 22s;
}

.blob-c {
  width: 18rem;
  height: 18rem;
  background: rgba(232, 160, 90, 0.5);
  bottom: 8%;
  left: 35%;
  animation-delay: -11s;
  animation-duration: 26s;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -4%) scale(1.08); }
  66% { transform: translate(-4%, 3%) scale(0.94); }
}

#whiskers {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

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

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(250, 246, 239, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(42, 33, 24, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-logo {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px var(--shadow);
  animation: logoBob 4s ease-in-out infinite;
}

@keyframes logoBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-3px) rotate(2deg); }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.25s;
}

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

.nav-links a:hover {
  color: var(--ink);
}

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

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

.icon-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 33, 24, 0.08);
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.icon-btn img {
  width: 1.05rem;
  height: 1.05rem;
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: #fff;
  box-shadow: 0 8px 20px var(--shadow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2.5px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  position: relative;
}

.hero-glow {
  position: absolute;
  width: min(36rem, 70vw);
  height: min(36rem, 70vw);
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(232, 160, 90, 0.35) 0%, transparent 68%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ginger-deep);
  margin-bottom: 0.75rem;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.brand-word {
  display: inline-block;
  animation: titleIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes titleIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.title-underline {
  display: block;
  width: 100%;
  height: 0.7rem;
  margin-top: 0.35rem;
  color: var(--ginger);
  animation: drawLine 1.2s ease 0.35s both;
}

.section-underline {
  width: 8rem;
  height: 0.65rem;
  margin: 0.5rem auto 0;
  color: var(--ginger);
}

@keyframes drawLine {
  from { opacity: 0; transform: scaleX(0.3); }
  to { opacity: 1; transform: scaleX(1); }
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 28rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.3s both;
}

.meta-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 33, 24, 0.08);
  box-shadow: 0 6px 18px var(--shadow);
  min-width: 8.5rem;
}

.meta-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ginger-deep);
}

.meta-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ginger) 0%, var(--ginger-deep) 100%);
  color: #fff8f0;
  box-shadow: 0 10px 28px rgba(201, 120, 58, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(201, 120, 58, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(42, 33, 24, 0.12);
  color: var(--ink);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 10px 24px var(--shadow);
}

.btn-small {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, background 0.2s;
}

.btn-small:hover {
  transform: scale(1.04);
  background: var(--ginger-deep);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  animation: fadeUp 0.9s ease 0.5s both;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(42, 33, 24, 0.08);
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.social-chip img {
  width: 1rem;
  height: 1rem;
}

.social-chip:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 8px 18px var(--shadow);
}

.social-chip-static {
  cursor: default;
  opacity: 0.9;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.logo-frame {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 42% 42% 38% 38%;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--peach) 100%);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.45),
    0 0 0 18px rgba(232, 160, 90, 0.18),
    0 28px 60px var(--shadow-strong);
  animation: domeFloat 5.5s ease-in-out infinite;
  position: relative;
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -20px 40px rgba(201, 120, 58, 0.12);
  pointer-events: none;
}

@keyframes domeFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.spark {
  position: absolute;
  width: 0.55rem;
  height: 1.6rem;
  border-radius: 99px;
  background: var(--ginger-deep);
  opacity: 0.75;
  animation: sparkPulse 2.4s ease-in-out infinite;
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  inset: 35% 0;
  background: inherit;
  border-radius: inherit;
  transform: rotate(60deg);
}
.spark::after {
  transform: rotate(-60deg);
}

.s1 { top: 8%; left: 22%; transform: rotate(-18deg); animation-delay: 0s; }
.s2 { top: 6%; right: 24%; transform: rotate(12deg); animation-delay: 0.3s; }
.s3 { top: 28%; left: 6%; transform: rotate(-40deg) scale(0.8); animation-delay: 0.6s; }
.s4 { top: 26%; right: 8%; transform: rotate(35deg) scale(0.85); animation-delay: 0.9s; }
.s5 { bottom: 18%; left: 14%; transform: rotate(25deg) scale(0.7); animation-delay: 1.1s; }
.s6 { bottom: 16%; right: 16%; transform: rotate(-28deg) scale(0.7); animation-delay: 1.4s; }

@keyframes sparkPulse {
  0%, 100% { opacity: 0.35; filter: blur(0); }
  50% { opacity: 0.95; filter: blur(0.5px); }
}

/* —— Sections —— */
.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 4rem);
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

.section-sub {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  max-width: 32rem;
  margin-inline: auto;
}

.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.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
}

.about-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(42, 33, 24, 0.07);
  box-shadow: 0 12px 32px var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
  backdrop-filter: blur(8px);
}

.about-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 20px 44px var(--shadow-strong);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.9rem 0 0.5rem;
}

.about-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.about-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
}

.about-icon.dome {
  background: linear-gradient(160deg, var(--dome), var(--peach));
  border-radius: 50% 50% 42% 42%;
  box-shadow: inset 0 -8px 16px rgba(201, 120, 58, 0.2);
  position: relative;
}

.about-icon.dome::after {
  content: "";
  width: 55%;
  height: 35%;
  border-radius: 50%;
  background: rgba(42, 33, 24, 0.12);
  position: absolute;
  bottom: 18%;
}

.about-icon.stripe {
  background:
    repeating-linear-gradient(
      -28deg,
      var(--ginger),
      var(--ginger) 6px,
      var(--peach) 6px,
      var(--peach) 12px
    );
}

.about-icon.sol img {
  width: 2rem;
  height: 2rem;
}

.about-icon.sol {
  background: rgba(255, 255, 255, 0.7);
}

/* How to buy */
.steps {
  list-style: none;
  max-width: 44rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(42, 33, 24, 0.07);
  box-shadow: 0 10px 28px var(--shadow);
  transition: transform 0.3s;
}

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

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ginger-deep);
  line-height: 1;
  min-width: 2.5rem;
}

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

.step-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.step-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.step-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(232, 160, 90, 0.15);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}

.step-links a img {
  width: 1rem;
  height: 1rem;
}

.step-links a:hover {
  background: rgba(232, 160, 90, 0.28);
  transform: translateY(-2px);
}

.ca-box {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(42, 33, 24, 0.92), rgba(92, 74, 58, 0.95));
  color: var(--cream);
  box-shadow: 0 16px 40px var(--shadow-strong);
}

.ca-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.ca-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ca-row code {
  font-family: ui-monospace, monospace;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  word-break: break-all;
}

/* Chart */
.chart-shell {
  max-width: 64rem;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 33, 24, 0.08);
  box-shadow: 0 18px 48px var(--shadow-strong);
}

.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(42, 33, 24, 0.06);
  background: rgba(250, 246, 239, 0.8);
}

.chart-note {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.chart-frame {
  position: relative;
  width: 100%;
  height: min(70vh, 560px);
  background: var(--cream);
}

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

/* Join us — banner only here, 3:1 */
.banner-wrap {
  max-width: 56rem;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.5),
    0 22px 50px var(--shadow-strong);
  aspect-ratio: 3 / 1;
  background: var(--cream-deep);
  position: relative;
  animation: bannerShimmer 8s ease-in-out infinite;
}

@keyframes bannerShimmer {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.5), 0 22px 50px var(--shadow-strong); }
  50% { box-shadow: 0 0 0 8px rgba(232, 160, 90, 0.25), 0 28px 60px var(--shadow-strong); }
}

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

.banner-wrap:hover .join-banner {
  transform: scale(1.03);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Footer */
.footer {
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem) 3rem;
  text-align: center;
  border-top: 1px solid rgba(42, 33, 24, 0.08);
  background: rgba(250, 246, 239, 0.55);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.footer p {
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.footer-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(42, 33, 24, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.footer-links a img {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-links a:hover {
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 10px 22px var(--shadow);
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-meta,
  .hero-cta,
  .social-row {
    justify-content: center;
  }

  .hero-glow {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    top: 72%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(250, 246, 239, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 33, 24, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

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

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(42, 33, 24, 0.06);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 520px) {
  .banner-wrap {
    border-radius: 1.1rem;
  }

  .chart-frame {
    height: 420px;
  }
}

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