/* Rich Bank — Gold Luxury Theme */

:root {
  --gold-light: #fff8dc;
  --gold: #ffd700;
  --gold-mid: #d4af37;
  --gold-dark: #b8860b;
  --gold-deep: #8b6914;
  --bg: #1e1812;
  --bg-warm: #261e17;
  --bg-section: rgba(34, 26, 18, 0.65);
  --surface: rgba(48, 38, 28, 0.88);
  --surface-glass: rgba(38, 30, 22, 0.72);
  --text: #ede4d4;
  --text-muted: #a89878;
  --border-gold: rgba(212, 175, 55, 0.32);
  --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.14);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.35);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --header-h: 80px;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--gold-light);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Background */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.bg-svg {
  width: 100%;
  height: 100%;
}

.shimmer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 215, 0, 0.04) 45%,
    rgba(255, 248, 220, 0.07) 50%,
    rgba(255, 215, 0, 0.04) 55%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer-sweep 8s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--gold-light), transparent);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* Typography */
.gold-text {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 25%,
    var(--gold-mid) 50%,
    var(--gold) 75%,
    var(--gold-light) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shine 4s linear infinite;
}

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

.shimmer-text {
  background: linear-gradient(90deg, var(--text-muted), var(--gold-light), var(--gold), var(--gold-light), var(--text-muted));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shine 3s linear infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(30, 24, 18, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.nav-logo img {
  border-radius: 50%;
  border: 2px solid var(--gold-mid);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(145deg, #fff4c4, #ffd700 30%, #d4af37 60%, #b8860b);
  color: #1a1208;
  box-shadow:
    0 4px 20px rgba(255, 215, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(139, 105, 20, 0.4);
  border: 1px solid rgba(255, 248, 220, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(255, 215, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #0a0806;
}

.btn-gold:hover::after {
  transform: translateX(100%);
}

.btn-outline-gold {
  background: rgba(0, 0, 0, 0.2);
  color: var(--gold);
  border: 1px solid var(--gold-mid);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.08);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.7rem; border-radius: 6px; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.8rem; border-radius: 8px; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 0.85rem; border-radius: 10px; }

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.glass-card {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: var(--shadow-gold);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.35);
}

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  max-width: 100%;
  box-shadow: var(--shadow-soft);
}

.contract-box--inline {
  margin-top: 1rem;
}

.contract-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-mid);
  flex-shrink: 0;
}

.contract-address {
  font-family: "Consolas", monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.btn-copy {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  color: var(--gold);
  padding: 0.4rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.btn-copy:hover {
  background: rgba(212, 175, 55, 0.3);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-frame {
  position: relative;
  width: min(420px, 90vw);
}

.logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.28) 0%, transparent 65%);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-logo {
  position: relative;
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 20px 60px rgba(255, 215, 0, 0.35));
  animation: logo-float 5s ease-in-out infinite;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50% { opacity: 1; height: 50px; }
}

/* Floating wealth decor */
.section {
  position: relative;
  overflow: hidden;
}

.section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.deco {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(255, 215, 0, 0.25));
  opacity: 0.85;
  animation: deco-float 6s ease-in-out infinite;
}

.deco-bar { width: clamp(70px, 10vw, 110px); }
.deco-coin { width: clamp(52px, 8vw, 88px); }
.deco-bill { width: clamp(80px, 11vw, 120px); }
.deco-photo {
  width: clamp(72px, 10vw, 110px);
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.45);
  object-fit: cover;
  aspect-ratio: 1;
}

.deco-hero-1 { top: 18%; left: 2%; animation-delay: 0s; }
.deco-hero-2 { top: 12%; right: 4%; animation-delay: 1s; }
.deco-hero-3 { bottom: 22%; left: 6%; animation-delay: 2s; }
.deco-hero-4 { bottom: 14%; right: 3%; animation-delay: 0.5s; }
.deco-hero-5 { top: 42%; left: 1%; animation-delay: 1.5s; opacity: 0.65; }

.deco-about-1 { top: 8%; right: 3%; animation-delay: 0s; }
.deco-about-2 { bottom: 10%; left: 2%; animation-delay: 1.2s; }

.deco-buy-1 { top: 14%; right: 2%; width: clamp(90px, 12vw, 130px); border-radius: 12px; animation-delay: 0s; }
.deco-buy-2 { bottom: 12%; left: 3%; animation-delay: 1s; }

.deco-chart-1 { top: 10%; left: 2%; animation-delay: 0s; }
.deco-chart-2 { bottom: 8%; right: 3%; animation-delay: 1.5s; }

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

/* About showcase */
.about-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.about-image-wrap {
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.about-feature-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-showcase-text {
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.about-lead {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about-showcase-text p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.about-showcase-text .about-closing {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* Wealth strip */
.wealth-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.wealth-strip img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
  transition: transform var(--transition);
}

.wealth-strip img:nth-child(4),
.wealth-strip img:nth-child(5),
.wealth-strip img:nth-child(6) {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.wealth-strip img:hover {
  transform: scale(1.08) translateY(-3px);
}

.card-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.card-img--svg {
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  width: 100px;
  height: 72px;
}

.step-icon {
  display: block;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.25));
}

.joinus-wealth-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.joinus-wealth-row img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.25));
  opacity: 0.9;
}

.joinus-wealth-row img:last-child {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

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

.about-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.about-card.featured {
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* How to Buy */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step {
  padding: 2rem;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.4), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.step .btn {
  margin-top: 0.5rem;
}

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

/* Chart */
.chart-wrapper {
  padding: 4px;
  overflow: hidden;
  min-height: 500px;
}

.chart-wrapper iframe {
  width: 100%;
  height: min(70vh, 600px);
  border: none;
  border-radius: calc(var(--radius) - 4px);
  background: #1a1410;
}

.chart-note {
  text-align: center;
  margin-top: 1rem;
}

.gold-link {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* Join Us */
.joinus {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.joinus-card {
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.joinus-banner-frame {
  padding: 1rem 1rem 0;
}

.joinus-banner {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.joinus-card-body {
  padding: 2rem 2rem 2.5rem;
}

.joinus-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-card {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.social-card:hover {
  transform: translateY(-4px);
  color: var(--gold-light);
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-gold);
}

.social-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.social-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.social-handle {
  font-size: 0.8rem;
  color: var(--gold-mid);
}

.shimmer-btn {
  animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35); }
  50% { box-shadow: 0 8px 40px rgba(255, 215, 0, 0.55); }
}

/* Section alternates */
.about {
  background: var(--bg-section);
}

.howtobuy {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
  padding: 2rem 0;
  background: rgba(22, 17, 12, 0.95);
}

.footer-decor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  opacity: 0.12;
  pointer-events: none;
}

.footer-decor img {
  height: 64px;
  width: auto;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo {
  border-radius: 50%;
  border: 1px solid var(--gold-mid);
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

  .about-showcase-text {
    padding: 0;
  }

  .deco-hero-4,
  .deco-hero-5,
  .deco-buy-1 {
    display: none;
  }

  .about-card.featured {
    transform: none;
  }

  .hero-visual {
    order: -1;
  }

  .logo-frame {
    width: min(280px, 70vw);
    margin: 0 auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(30, 24, 18, 0.98);
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

@media (max-width: 480px) {
  .hero-cta,
  .buy-links {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn,
  .buy-links .btn {
    width: 100%;
  }
}
