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

:root {
  /* Dog fur palette — cream white Shiba */
  --cream: #fff6e8;
  --cream-deep: #f3e0c4;
  --fur: #e8c49a;
  --caramel: #c8894a;
  --caramel-deep: #a66a2e;
  --nose: #3a2a1e;
  --ink: #2c1f14;
  --ink-soft: #5c4634;
  --white: #fffdf8;
  --grass: #6b9b4c;
  --grass-deep: #4f7a36;
  --pump: #86c46a;
  --pump-deep: #5fa348;
  --font-display: "Bangers", system-ui, cursive;
  --font-body: "Nunito", system-ui, sans-serif;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 16px 40px rgba(44, 31, 20, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(232, 196, 154, 0.45), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(107, 155, 76, 0.18), transparent 40%),
    linear-gradient(180deg, #fff8ec 0%, #f6e6c8 45%, #efe0bf 100%);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

.paw-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='78' rx='18' ry='14' fill='%232c1f14'/%3E%3Ccircle cx='38' cy='58' r='10' fill='%232c1f14'/%3E%3Ccircle cx='55' cy='48' r='10' fill='%232c1f14'/%3E%3Ccircle cx='75' cy='48' r='10' fill='%232c1f14'/%3E%3Ccircle cx='90' cy='58' r='10' fill='%232c1f14'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.floating-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.deco {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.18;
  animation: float 9s ease-in-out infinite;
}

.deco-1 { top: 18%; left: 4%; animation-delay: 0s; }
.deco-2 { top: 32%; right: 6%; animation-delay: -2s; }
.deco-3 { top: 58%; left: 3%; animation-delay: -4s; }
.deco-4 { top: 72%; right: 5%; animation-delay: -1s; }
.deco-5 { top: 88%; left: 12%; animation-delay: -3s; }
.deco-6 { top: 48%; right: 4%; animation-delay: -5s; }

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.accent { color: var(--caramel-deep); }
.center { text-align: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 246, 232, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(200, 137, 74, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0.7rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--caramel);
  box-shadow: 0 4px 12px rgba(44, 31, 20, 0.15);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--caramel-deep);
}

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

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  transition: color 0.2s;
}

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

.nav-socials {
  display: flex;
  gap: 0.45rem;
  margin-left: 0.25rem;
}

.nav-social {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--caramel);
  color: var(--cream) !important;
  transition: transform 0.2s, background 0.2s;
}

.nav-social:hover {
  transform: translateY(-2px);
  background: var(--caramel-deep);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--caramel-deep);
  border-radius: 2px;
}

/* Hero — generated dog image, NOT banner.png */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 68px;
}

.hero-media {
  position: relative;
  min-height: 52vh;
  overflow: hidden;
  background: var(--fur);
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 52vh;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-content {
  position: relative;
  margin-top: -4.5rem;
  width: min(720px, 92vw);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  padding: 1.75rem 1.5rem 1.85rem;
  text-align: center;
  background: var(--white);
  border: 3px solid var(--caramel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: riseIn 0.85s ease-out both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero-logo {
  width: min(112px, 28vw);
  height: min(112px, 28vw);
  margin: -4.2rem auto 0.75rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 4px solid var(--white);
  outline: 3px solid var(--caramel);
  box-shadow: 0 10px 28px rgba(44, 31, 20, 0.2);
  animation: floaty 3.2s ease-in-out infinite;
  background: var(--cream);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}

.badge {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pump {
  background: rgba(134, 196, 106, 0.25);
  color: var(--grass-deep);
  border: 2px solid rgba(79, 122, 54, 0.35);
}

.badge-sol {
  background: rgba(200, 137, 74, 0.18);
  color: var(--caramel-deep);
  border: 2px solid rgba(200, 137, 74, 0.4);
}

.hero-eyebrow {
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-shadow: 3px 3px 0 var(--fur);
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--caramel-deep);
  letter-spacing: 0.06em;
  margin: 0.25rem 0 0.55rem;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-soft);
  max-width: 32em;
  margin: 0 auto 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--caramel), var(--caramel-deep));
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(166, 106, 46, 0.35);
  border-color: var(--nose);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(166, 106, 46, 0.45);
}

.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  border-color: rgba(200, 137, 74, 0.45);
}

.btn-ghost:hover {
  background: var(--fur);
}

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

.btn-copy {
  flex-shrink: 0;
  background: var(--caramel);
  color: var(--cream);
  border-color: var(--nose);
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
}

.btn-copy:hover { background: var(--caramel-deep); }

.btn-copy.copied {
  background: var(--grass);
  border-color: var(--grass-deep);
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--caramel);
  color: var(--cream);
  overflow: hidden;
  padding: 0.7rem 0;
  border-top: 3px solid var(--nose);
  border-bottom: 3px solid var(--nose);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  animation: marquee 26s linear infinite;
}

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

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}

.section-label {
  display: block;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.section-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.section-text strong { color: var(--ink); }

.section-sub {
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* About */
.about-board {
  display: grid;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border: 3px solid rgba(200, 137, 74, 0.35);
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .about-board {
    grid-template-columns: 1.35fr 0.75fr;
    gap: 2.25rem;
    align-items: center;
  }
}

.about-story .section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.85rem;
  margin-bottom: 0.35rem;
}

.about-jp {
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 900;
  color: var(--caramel);
  letter-spacing: 0.04em;
}

.about-alias {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(200, 137, 74, 0.16);
  border: 2px solid rgba(200, 137, 74, 0.35);
  color: var(--caramel-deep);
  font-weight: 900;
  font-size: 0.82rem;
}

.about-lead {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.15rem;
  line-height: 1.55;
}

.about-block {
  margin-bottom: 1.15rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-radius: 14px;
  border: 2px solid rgba(200, 137, 74, 0.22);
}

.about-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--caramel-deep);
  margin-bottom: 0.55rem;
}

.about-block p {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.65rem;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.jp-inline {
  color: var(--caramel);
  font-weight: 900;
  white-space: nowrap;
}

.about-viral {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 137, 74, 0.18), rgba(107, 155, 76, 0.12));
  border: 2px solid rgba(200, 137, 74, 0.3);
}

.viral-stat {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--caramel-deep);
  line-height: 1;
  letter-spacing: 0.02em;
}

.about-viral p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.about-punch {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ink);
}

.about-punch strong {
  color: var(--caramel-deep);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.about-shots {
  text-align: center;
}

.shots-label {
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.75rem;
}

.about-photos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-phone {
  display: block;
  width: 148px;
  flex: 0 0 auto;
  padding: 0.35rem;
  background: var(--nose);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(44, 31, 20, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.about-phone:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 32px rgba(44, 31, 20, 0.24);
}

.about-phone img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  background: #f5f5f5;
}

.shots-hint {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink-soft);
  opacity: 0.7;
}

@media (max-width: 899px) {
  .about-shots {
    order: -1;
  }
}

@media (max-width: 420px) {
  .about-phone {
    width: 130px;
  }

  .about-phone img {
    max-height: 230px;
  }

  .about-viral {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.meme-stats {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.meme-stats li {
  background: var(--white);
  border: 3px solid rgba(200, 137, 74, 0.35);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  text-align: center;
  min-width: 96px;
  box-shadow: 0 6px 16px rgba(44, 31, 20, 0.08);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--caramel-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* YouTube */
.youtube-section {
  padding-top: clamp(3rem, 7vw, 4.5rem);
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

.yt-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid rgba(200, 137, 74, 0.28);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(44, 31, 20, 0.1);
}

.yt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #fffaf2, #f8ead4);
  border-bottom: 2px solid rgba(200, 137, 74, 0.18);
}

.yt-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.yt-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid var(--caramel);
  flex-shrink: 0;
}

.yt-kicker {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.1rem;
}

.yt-name {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 2.4vw, 1.15rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0;
}

.yt-link {
  flex-shrink: 0;
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
  background: #fff;
  border-color: rgba(200, 137, 74, 0.4);
}

.yt-link:hover {
  background: var(--fur);
}

.yt-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.yt-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 560px) {
  .yt-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .yt-link {
    width: 100%;
  }
}

/* Contract */
.contract {
  background: rgba(255, 253, 248, 0.65);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 720px;
  margin: 1.35rem auto 0;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 3px solid var(--caramel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ca-address {
  flex: 1;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: clamp(0.7rem, 2.2vw, 0.9rem);
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.copy-toast {
  margin-top: 0.85rem;
  min-height: 1.4em;
  color: var(--grass-deep);
  font-weight: 800;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.copy-toast.show { opacity: 1; }

/* Chart */
.chart-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--caramel);
  background: #1a1410;
  min-height: 460px;
  box-shadow: var(--shadow);
}

.dexscreener-embed {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

.chart-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--ink-soft);
  padding: 2rem;
  text-align: center;
}

.chart-placeholder.hidden,
.dexscreener-embed.hidden {
  display: none;
}

.chart-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--caramel-deep);
  font-weight: 900;
  text-decoration: none;
}

.chart-link:hover { text-decoration: underline; }

/* Buy */
.buy {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 196, 154, 0.5), transparent 55%),
    rgba(255, 246, 232, 0.5);
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 2.25rem 0 2.25rem;
}

@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  background: var(--white);
  border: 3px solid rgba(200, 137, 74, 0.3);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(44, 31, 20, 0.06);
}

.step-card:hover {
  border-color: var(--caramel);
  transform: translateY(-4px);
}

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

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.55rem 0 0.4rem;
  letter-spacing: 0.02em;
}

.step-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.buy-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--nose);
  color: rgba(255, 246, 232, 0.7);
  padding: 2.5rem 0 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--caramel);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.footer-brand span {
  font-size: 0.85rem;
  color: rgba(255, 246, 232, 0.55);
}

.footer-links {
  display: flex;
  gap: 1.4rem;
}

.footer-links a {
  color: var(--fur);
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover { color: var(--cream); }

.footer-disclaimer {
  max-width: 540px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 246, 232, 0.4);
}

/* Mobile */
@media (max-width: 800px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 246, 232, 0.98);
    border-bottom: 2px solid rgba(200, 137, 74, 0.3);
    padding: 0.5rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
  }

  .nav-socials {
    justify-content: center;
    padding: 1rem;
  }

  .hero-media,
  .hero-img {
    min-height: 42vh;
  }

  .hero-content {
    margin-top: -3rem;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .ca-address {
    text-align: center;
    white-space: normal;
    word-break: break-all;
  }
}
