:root {
  --tabby: #c4783a;
  --tabby-deep: #8f5424;
  --tabby-light: #e8a85c;
  --fur-cream: #f3e0c4;
  --earth: #3d2a1a;
  --asphalt: #2c2a28;
  --asphalt-mid: #4a4642;
  --sky: #7eb8e0;
  --sky-deep: #4a8fbf;
  --sky-soft: #c9e4f5;
  --field: #d4c09a;
  --ink: #1a1410;
  --paper: #f7efe3;
  --glow: rgba(196, 120, 58, 0.45);
  --glass: rgba(247, 239, 227, 0.12);
  --stroke: rgba(61, 42, 26, 0.18);
  --radius: 1.25rem;
  --font-display: "DynaPuff", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(126, 184, 224, 0.55), transparent 60%),
    radial-gradient(900px 500px at 88% 8%, rgba(232, 168, 92, 0.35), transparent 55%),
    radial-gradient(800px 700px at 50% 100%, rgba(212, 192, 154, 0.4), transparent 50%),
    linear-gradient(180deg, #b9d7eb 0%, #e8d7b8 42%, #d9c4a0 72%, #c4b090 100%);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

.road-grain,
.sky-wash,
#ride-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.road-grain {
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.35) 3px,
      rgba(0, 0, 0, 0.35) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.2) 2px,
      rgba(255, 255, 255, 0.2) 3px
    );
  mix-blend-mode: multiply;
}

.sky-wash {
  background:
    linear-gradient(180deg, rgba(201, 228, 245, 0.35), transparent 35%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.35), transparent 40%);
  animation: sky-drift 18s ease-in-out infinite alternate;
}

#ride-canvas {
  z-index: 1;
  opacity: 0.55;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(247, 239, 227, 0.72);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 8px 30px rgba(61, 42, 26, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(247, 239, 227, 0.9);
  box-shadow: 0 10px 36px rgba(61, 42, 26, 0.14);
}

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

.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.7),
    0 6px 16px rgba(61, 42, 26, 0.25);
  animation: logo-bob 4.5s ease-in-out infinite;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--tabby-deep), var(--tabby-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  color: var(--earth);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

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

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  color: var(--tabby-deep);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.icon-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--stroke);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 18px rgba(61, 42, 26, 0.15);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--stroke);
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 99px;
  background: var(--earth);
  transition: transform 0.25s ease;
}

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

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wheel {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(61, 42, 26, 0.12);
  box-shadow: inset 0 0 0 10px rgba(196, 120, 58, 0.08);
  animation: spin 18s linear infinite;
}

.wheel::before,
.wheel::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 2px dashed rgba(61, 42, 26, 0.15);
}

.wheel-lg {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  right: -6%;
  top: 8%;
  animation-duration: 28s;
}

.wheel-sm {
  width: min(22vw, 180px);
  height: min(22vw, 180px);
  left: 4%;
  bottom: 12%;
  animation-direction: reverse;
  animation-duration: 14s;
  opacity: 0.7;
}

.spoke-burst {
  position: absolute;
  width: 220px;
  height: 220px;
  right: 18%;
  bottom: 18%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(196, 120, 58, 0.12) 0deg 8deg,
      transparent 8deg 24deg
    );
  border-radius: 50%;
  animation: spin 22s linear infinite reverse;
  filter: blur(0.5px);
  opacity: 0.55;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--earth);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
  animation: fade-up 0.8s ease both;
}

.sol-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.title-line {
  display: block;
  background: linear-gradient(180deg, #5a3820 0%, var(--tabby) 45%, var(--tabby-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(143, 84, 36, 0.2);
  animation: fade-up 0.9s ease both;
}

.title-line.accent {
  background: linear-gradient(180deg, var(--sky-deep), var(--sky), #e8f4fc);
  -webkit-background-clip: text;
  background-clip: text;
  animation-delay: 0.12s;
  filter: drop-shadow(0 4px 0 rgba(61, 42, 26, 0.08));
}

.hero-tagline {
  margin: 1.1rem 0 1.6rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: rgba(26, 20, 16, 0.82);
  animation: fade-up 1s ease both 0.18s;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: fade-up 1s ease both 0.25s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn img {
  width: 1.1rem;
  height: 1.1rem;
}

.btn-primary {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--tabby-deep), var(--tabby), var(--tabby-light));
  box-shadow:
    0 10px 24px rgba(143, 84, 36, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 30px rgba(143, 84, 36, 0.4);
}

.btn-ghost {
  color: var(--earth);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
}

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

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  animation: fade-up 1s ease both 0.32s;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--stroke);
  transition: transform 0.2s ease, background 0.2s ease;
}

.chip img {
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
}

.chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
}

.hero-stage {
  display: grid;
  place-items: center;
  position: relative;
  min-height: min(62vh, 520px);
}

.logo-halo {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(126, 184, 224, 0.25) 40%, transparent 70%);
  filter: blur(8px);
  animation: pulse-halo 4s ease-in-out infinite;
}

.hero-logo {
  width: min(78%, 420px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28% 32% 30% 34% / 32% 28% 36% 30%;
  box-shadow:
    0 30px 60px rgba(61, 42, 26, 0.28),
    0 0 0 6px rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
  animation: float-ride 5.5s ease-in-out infinite, morph-soft 10s ease-in-out infinite;
}

.road-strip {
  position: absolute;
  bottom: 6%;
  left: 8%;
  right: 8%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--asphalt), var(--asphalt-mid), var(--asphalt));
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.dash-line {
  height: 3px;
  margin-top: 7.5px;
  background: repeating-linear-gradient(
    90deg,
    #f5e6c8 0 24px,
    transparent 24px 42px
  );
  animation: road-run 1.1s linear infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(61, 42, 26, 0.35);
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tabby);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

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

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

.section-inner.narrow {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tabby-deep);
}

.eyebrow.center,
.center {
  text-align: center;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  color: var(--earth);
}

.section-lead {
  margin: 0 auto 2.25rem;
  max-width: 36rem;
  font-weight: 700;
  color: rgba(26, 20, 16, 0.75);
}

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

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

/* About */
.about .section-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.frame-glow {
  position: absolute;
  inset: -8%;
  border-radius: 40% 35% 38% 42% / 38% 42% 35% 40%;
  background: conic-gradient(from 120deg, var(--tabby), var(--sky), var(--fur-cream), var(--tabby));
  filter: blur(18px);
  opacity: 0.55;
  animation: spin 16s linear infinite;
}

.about-img {
  position: relative;
  border-radius: 1.75rem;
  box-shadow: 0 24px 50px rgba(61, 42, 26, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.65);
}

.about-copy p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: rgba(26, 20, 16, 0.85);
}

.trait-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.trait-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--stroke);
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tabby), var(--sky));
  box-shadow: 0 0 0 4px rgba(196, 120, 58, 0.15);
  flex-shrink: 0;
}

/* How to buy */
.howtobuy {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(61, 42, 26, 0.12);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--tabby-deep);
  line-height: 1;
}

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

.step-body p {
  margin: 0;
  color: rgba(26, 20, 16, 0.78);
}

.step-ring {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 8px solid rgba(196, 120, 58, 0.12);
  animation: spin 12s linear infinite;
}

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

.inline-link img {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.2rem;
}

.ca-box {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.85rem;
  background: rgba(44, 42, 40, 0.92);
  color: #f7efe3;
}

.ca-box code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
}

.copy-btn {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--earth);
  background: linear-gradient(135deg, var(--fur-cream), #fff);
  transition: transform 0.15s ease;
}

.copy-btn:hover {
  transform: scale(1.04);
}

.copy-btn.copied {
  background: linear-gradient(135deg, var(--sky-soft), #fff);
}

/* Chart */
.chart-shell {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.chart-frame {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow:
    0 24px 50px rgba(61, 42, 26, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  background: #0d0d0d;
  min-height: 520px;
  position: relative;
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(196, 120, 58, 0.08);
  z-index: 1;
}

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

.chart-ext {
  margin-top: 0.25rem;
}

/* Join us */
.joinus {
  position: relative;
}

.joinus::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(126, 184, 224, 0.25), transparent 65%);
  pointer-events: none;
}

.banner-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 2rem;
  aspect-ratio: 3 / 1;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 28px 60px rgba(61, 42, 26, 0.22),
    0 0 0 1px var(--stroke);
  position: relative;
}

.banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.18), transparent 60%);
  transform: translateX(-120%);
  animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

.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);
}

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

.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-card:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 0 18px 34px rgba(61, 42, 26, 0.14);
  background: rgba(255, 255, 255, 0.85);
}

.social-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 0.45rem;
  filter: drop-shadow(0 2px 4px rgba(61, 42, 26, 0.12));
}

.social-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.social-card span {
  font-size: 0.82rem;
  opacity: 0.7;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--stroke);
  background: rgba(247, 239, 227, 0.55);
  backdrop-filter: blur(10px);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.footer-tag {
  margin: 0;
  font-weight: 800;
  color: rgba(26, 20, 16, 0.8);
}

.disclaimer {
  margin: 0;
  max-width: 40rem;
  font-size: 0.85rem;
  opacity: 0.65;
}

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

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

@keyframes morph-soft {
  0%,
  100% {
    border-radius: 28% 32% 30% 34% / 32% 28% 36% 30%;
  }
  50% {
    border-radius: 34% 28% 36% 30% / 28% 34% 30% 36%;
  }
}

@keyframes pulse-halo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes road-run {
  to {
    background-position: 66px 0;
  }
}

@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(16px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

@keyframes sky-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@keyframes sheen {
  0%,
  40% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

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

  .hero-tagline,
  .hero-ctas,
  .hero-links {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tagline {
    max-width: 32rem;
  }

  .hero-stage {
    order: -1;
    min-height: auto;
    padding: 1rem 0 2rem;
  }

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

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

  .about-visual {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(247, 239, 227, 0.96);
    border-bottom: 1px solid var(--stroke);
    box-shadow: 0 16px 30px rgba(61, 42, 26, 0.12);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--stroke);
  }

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

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

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

  .banner-wrap {
    border-radius: 0.9rem;
  }

  .brand-text {
    font-size: 1rem;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
