:root {
  --ink: #07131f;
  --ink-2: #0c1f33;
  --panel: rgba(10, 28, 48, 0.78);
  --panel-solid: #10263d;
  --lime: #7dff3a;
  --lime-hot: #b6ff6a;
  --lime-dim: #3d9a2a;
  --aqua: #5ad0ff;
  --cream: #f3ffe8;
  --muted: #9bb6a8;
  --stroke: rgba(125, 255, 58, 0.55);
  --stroke-ink: rgba(243, 255, 232, 0.18);
  --glow: 0 0 28px rgba(125, 255, 58, 0.28);
  --font-display: "Gochi Hand", "Fuzzy Bubbles", cursive;
  --font-body: "Kalam", "Fuzzy Bubbles", cursive;
  --font-soft: "Fuzzy Bubbles", "Kalam", cursive;
  --radius-wobble: 22px 28px 18px 30px / 26px 18px 28px 20px;
  --shell: min(1120px, calc(100% - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(90, 208, 255, 0.16), transparent 55%),
    radial-gradient(900px 600px at 90% 8%, rgba(125, 255, 58, 0.14), transparent 50%),
    radial-gradient(800px 500px at 50% 100%, rgba(61, 154, 42, 0.18), transparent 55%),
    linear-gradient(180deg, #061018 0%, #0a1a2c 42%, #071812 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.svg-defs {
  position: absolute;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* Background layers */
#fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.bg-wash,
.bg-grid,
.bg-scribble {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-wash {
  background:
    radial-gradient(circle at 20% 30%, rgba(125, 255, 58, 0.07), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(90, 208, 255, 0.06), transparent 30%);
  animation: wash-drift 14s ease-in-out infinite alternate;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(125, 255, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 208, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
  animation: grid-shift 22s linear infinite;
  opacity: 0.55;
}

.bg-scribble {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cpath d='M10 40c30-20 50 10 80-5 20-10 40 15 60 0' fill='none' stroke='%237dff3a' stroke-opacity='0.08' stroke-width='2'/%3E%3Cpath d='M20 120c40 20 70-30 120-10' fill='none' stroke='%235ad0ff' stroke-opacity='0.06' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0.7;
  animation: scribble-drift 30s linear infinite;
}

@keyframes wash-drift {
  from { transform: translate3d(-1%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.05); }
}

@keyframes grid-shift {
  from { background-position: 0 0; }
  to { background-position: 48px 96px; }
}

@keyframes scribble-drift {
  from { background-position: 0 0; }
  to { background-position: 180px 90px; }
}

.ticker-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 2px dashed rgba(125, 255, 58, 0.35);
  background: rgba(5, 16, 24, 0.72);
  backdrop-filter: blur(8px);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  color: var(--lime);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ticker-track span {
  opacity: 0.85;
}

.ticker-track .up {
  color: var(--lime-hot);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 24, 0.72);
  border-bottom: 2px solid rgba(125, 255, 58, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 40% 55% 45% 50%;
  border: 2px solid var(--lime);
  box-shadow: var(--glow);
  animation: logo-wobble 4s ease-in-out infinite;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--lime-hot);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--font-soft);
}

.site-nav a {
  position: relative;
  padding: 0.2rem 0.15rem;
  color: var(--cream);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:not(.nav-pill)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.site-nav a:not(.nav-pill):hover {
  color: var(--lime-hot);
  transform: rotate(-2deg);
}

.site-nav a:not(.nav-pill):hover::after {
  transform: scaleX(1);
}

.nav-pill {
  padding: 0.45rem 0.9rem !important;
  border: 2px solid var(--lime);
  border-radius: var(--radius-wobble);
  background: rgba(125, 255, 58, 0.12);
  color: var(--lime-hot) !important;
  box-shadow: var(--glow);
  animation: pill-pulse 2.8s ease-in-out infinite;
}

.nav-burger {
  display: none;
  width: 46px;
  height: 42px;
  border: 2px solid var(--lime);
  border-radius: 14px 18px 12px 16px;
  background: rgba(125, 255, 58, 0.08);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

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

/* Shared */
.scribble-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.6rem;
  padding: 0.25rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--aqua);
  border: 2px dashed rgba(90, 208, 255, 0.45);
  border-radius: 999px 18px 999px 22px;
  background: rgba(90, 208, 255, 0.08);
  transform: rotate(-1.5deg);
}

.inline-ico {
  width: 1rem;
  height: 1rem;
}

.themed-ico {
  filter: drop-shadow(0 0 6px rgba(125, 255, 58, 0.45));
}

.btn-ico:not(.themed-ico),
.social-ico:not(.themed-ico),
.footer-links img:not(.themed-ico) {
  filter: drop-shadow(0 0 5px rgba(125, 255, 58, 0.25));
}

.section {
  padding: 5.5rem 0 4.5rem;
}

.section-head {
  max-width: 46rem;
  margin-bottom: 2.4rem;
}

.section-title {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 38rem;
}

.wobble-text {
  filter: url(#wobble);
}

.sketch-card {
  background: var(--panel);
  border: 2.5px solid var(--stroke);
  border-radius: var(--radius-wobble);
  padding: 1.35rem 1.4rem;
  box-shadow:
    4px 5px 0 rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sketch-card:hover {
  transform: translateY(-4px) rotate(-0.6deg);
  border-color: var(--lime-hot);
  box-shadow:
    6px 8px 0 rgba(0, 0, 0, 0.3),
    0 0 24px rgba(125, 255, 58, 0.18);
}

.sketch-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--lime-hot);
}

.sketch-card p {
  margin: 0;
  color: #d7ecd8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.15rem;
  border: 2.5px solid transparent;
  border-radius: 18px 24px 16px 22px / 22px 16px 24px 18px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) rotate(-1deg) scale(1.02);
}

.btn-ico {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.btn-lime {
  background: linear-gradient(135deg, var(--lime), #4fd31f);
  color: #06200c;
  border-color: #d8ff9d;
  box-shadow: var(--glow);
}

.btn-ink {
  background: rgba(8, 24, 38, 0.85);
  border-color: var(--lime);
  color: var(--lime-hot);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(90, 208, 255, 0.55);
  color: var(--aqua);
}

/* Hero */
.hero {
  padding: 3.2rem 0 4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-title {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  line-height: 0.88;
}

.title-line {
  display: inline-block;
}

.title-line.accent {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(125, 255, 58, 0.35);
  animation: accent-flicker 3.5s ease-in-out infinite;
}

.hero-symbol {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--aqua);
  letter-spacing: 0.08em;
}

.hero-lead {
  margin: 0 0 1.4rem;
  max-width: 34rem;
  font-size: 1.22rem;
  color: #dff5d8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  padding: 0.55rem 0.7rem;
  border: 2px dashed rgba(125, 255, 58, 0.4);
  border-radius: 16px 22px 14px 20px;
  background: rgba(0, 0, 0, 0.28);
}

.ca-label {
  font-family: var(--font-display);
  color: var(--lime);
  flex-shrink: 0;
}

.ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-soft);
  color: var(--cream);
}

.ca-copy {
  border: 2px solid var(--aqua);
  border-radius: 12px 16px 10px 14px;
  background: rgba(90, 208, 255, 0.12);
  color: var(--aqua);
  padding: 0.3rem 0.7rem;
}

.ca-copy:hover {
  background: rgba(90, 208, 255, 0.22);
}

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

.logo-ring {
  position: absolute;
  width: min(78%, 360px);
  aspect-ratio: 1;
  border: 2px dashed rgba(125, 255, 58, 0.35);
  border-radius: 42% 58% 48% 52%;
  animation: ring-spin 18s linear infinite;
}

.logo-ring.ring-2 {
  width: min(92%, 430px);
  border-color: rgba(90, 208, 255, 0.28);
  animation-direction: reverse;
  animation-duration: 26s;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(88%, 390px);
  border-radius: 28% 36% 30% 34% / 32% 28% 36% 30%;
  border: 3px solid rgba(125, 255, 58, 0.55);
  box-shadow:
    0 0 0 6px rgba(8, 24, 38, 0.45),
    0 0 40px rgba(125, 255, 58, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.floaty {
  animation: floaty 4.5s ease-in-out infinite;
}

.arrow-doodle {
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 36px 14px;
  border-color: transparent transparent var(--lime) transparent;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(125, 255, 58, 0.55));
}

.arrow-doodle::before,
.arrow-doodle::after {
  content: none;
}

.arrow-doodle.a1 {
  top: 12%;
  right: 10%;
  animation: arrow-jitter 2.2s ease-in-out infinite;
}

.arrow-doodle.a2 {
  bottom: 18%;
  left: 8%;
  border-width: 0 10px 28px 10px;
  animation: arrow-jitter 2.8s ease-in-out infinite reverse;
}

.arrow-doodle.a3 {
  top: 42%;
  left: 2%;
  border-width: 0 8px 22px 8px;
  opacity: 0.55;
  animation: arrow-jitter 3.1s ease-in-out infinite;
}

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

@keyframes logo-wobble {
  0%, 100% { border-radius: 40% 55% 45% 50%; transform: rotate(-2deg); }
  50% { border-radius: 50% 40% 55% 45%; transform: rotate(2deg); }
}

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

@keyframes arrow-jitter {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(4px, -8px) rotate(8deg); }
}

@keyframes accent-flicker {
  0%, 100% { opacity: 1; filter: brightness(1); }
  48% { opacity: 1; }
  50% { opacity: 0.82; filter: brightness(1.25); }
  52% { opacity: 1; }
}

@keyframes pill-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(125, 255, 58, 0.2); }
  50% { box-shadow: 0 0 18px rgba(125, 255, 58, 0.45); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.tweet-panel {
  border: 2.5px solid rgba(90, 208, 255, 0.35);
  border-radius: 28px 34px 24px 36px / 32px 24px 34px 26px;
  background: rgba(6, 18, 30, 0.82);
  padding: 1.1rem 1.1rem 0.4rem;
  box-shadow: 0 0 30px rgba(90, 208, 255, 0.08);
}

.tweet-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.tweet-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  color: var(--lime-hot);
}

.tweet-embed-wrap {
  display: flex;
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
  border-radius: 18px;
}

.tweet-embed-wrap .twitter-tweet {
  margin: 0 auto !important;
}

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

.buy-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #06200c;
  background: var(--lime);
  border-radius: 40% 60% 45% 55%;
  box-shadow: var(--glow);
  animation: num-bob 3s ease-in-out infinite;
}

.buy-step:nth-child(2) .step-num { animation-delay: 0.2s; }
.buy-step:nth-child(3) .step-num { animation-delay: 0.4s; }
.buy-step:nth-child(4) .step-num { animation-delay: 0.6s; }

@keyframes num-bob {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(6deg) scale(1.06); }
}

.step-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.step-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border: 2px solid rgba(125, 255, 58, 0.4);
  border-radius: 14px 18px 12px 16px;
  background: rgba(125, 255, 58, 0.08);
  font-family: var(--font-display);
  color: var(--lime-hot);
  transition: transform 0.2s ease, background 0.2s ease;
}

.step-links a:hover {
  transform: rotate(-2deg) scale(1.04);
  background: rgba(125, 255, 58, 0.16);
}

/* Chart */
.chart-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--stroke);
  border-radius: 26px 32px 22px 34px / 30px 22px 32px 24px;
  background: #0a1420;
  box-shadow:
    5px 6px 0 rgba(0, 0, 0, 0.35),
    0 0 36px rgba(125, 255, 58, 0.12);
  min-height: 560px;
}

.chart-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.chart-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

/* Join us */
.joinus {
  padding-bottom: 5rem;
}

.banner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 3px solid rgba(125, 255, 58, 0.55);
  border-radius: 28px 36px 24px 40px / 34px 24px 38px 26px;
  box-shadow:
    0 0 40px rgba(125, 255, 58, 0.18),
    6px 8px 0 rgba(0, 0, 0, 0.35);
  margin-bottom: 1.6rem;
  background: #04140c;
  animation: banner-glow 4s ease-in-out infinite;
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

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

@keyframes banner-glow {
  0%, 100% { box-shadow: 0 0 28px rgba(125, 255, 58, 0.14), 6px 8px 0 rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 0 48px rgba(125, 255, 58, 0.3), 6px 8px 0 rgba(0, 0, 0, 0.35); }
}

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

.social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  border: 2.5px solid rgba(125, 255, 58, 0.4);
  border-radius: var(--radius-wobble);
  background: rgba(8, 26, 40, 0.8);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
  transform: translateY(-5px) rotate(1deg);
  border-color: var(--lime-hot);
  box-shadow: 0 0 24px rgba(125, 255, 58, 0.2);
}

.social-ico {
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.25rem;
}

.social-card span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--lime-hot);
}

.social-card small {
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 2px dashed rgba(125, 255, 58, 0.28);
  background: rgba(3, 12, 18, 0.85);
  padding: 2rem 0 2.4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

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

.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 40% 55% 45% 50%;
  border: 2px solid var(--lime);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--lime-hot);
}

.footer-brand span {
  color: var(--aqua);
  font-size: 0.95rem;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.footer-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(125, 255, 58, 0.35);
  border-radius: 14px 18px 12px 16px;
  background: rgba(125, 255, 58, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
  transform: rotate(-6deg) scale(1.08);
  border-color: var(--lime);
}

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

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

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

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

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

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

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 1.2rem;
    left: 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.9rem;
    background: rgba(6, 18, 28, 0.96);
    border: 2px solid var(--stroke);
    border-radius: 22px 28px 18px 26px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

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

  .site-nav a {
    padding: 0.55rem 0.4rem;
  }

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

  .banner-frame {
    aspect-ratio: 3 / 1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1120px, calc(100% - 1.2rem));
  }

  .hero {
    padding-top: 1.6rem;
  }

  .section {
    padding: 3.6rem 0 3rem;
  }

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

  .btn {
    width: 100%;
  }

  .ca-box {
    flex-wrap: wrap;
  }

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

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

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

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