/* =========================================================
   PIPE CAT — Main Styles
   Desktop first, responsive styles at the bottom
   ========================================================= */

:root {
  --bg: #07090a;
  --bg-soft: #0d120f;
  --panel: #101611;
  --panel-2: #131a14;
  --text: #f2f1ea;
  --muted: #92988e;
  --line: #263126;
  --accent: #b8ff2c;
  --accent-2: #8bd600;
  --black: #050606;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 255, 44, 0.045), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-shell {
  overflow: clip;
}

/* =========================================================
   Navigation
   ========================================================= */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.nav-card {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 14px;
  background: rgba(7, 9, 10, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo-wrap {
  width: 42px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(184, 255, 44, 0.28);
  background: #0c100d;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-links a {
  color: #a0a49d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-buy {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #0a0d09;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.nav-buy:hover {
  background: #d1ff72;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #0d100e;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* =========================================================
   Shared elements
   ========================================================= */

.section {
  position: relative;
  padding: 120px 0;
}

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca197;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker span,
.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin: 18px 0 42px;
}

.section-heading-row h2,
.about-copy h2,
.community-card h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 6vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.section-heading-row p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #0a0c09;
}

.button-primary:hover {
  background: #d4ff78;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ca-box {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 8px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 10, 8, 0.72);
}

.ca-content {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ca-label {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ca-address {
  min-width: 0;
  color: #d9ddd5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(184, 255, 44, 0.48);
  border-radius: 9px;
  background: transparent;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.copy-button:hover {
  background: var(--accent);
  color: #0b0d0a;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 880px;
  padding: 128px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-stars,
.hero-stars::before,
.hero-stars::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-stars {
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 12% 18%, #cfd5cd 0 1px, transparent 1.5px),
    radial-gradient(circle at 67% 16%, #cfd5cd 0 1px, transparent 1.5px),
    radial-gradient(circle at 85% 36%, #b8ff2c 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 58%, #cfd5cd 0 1px, transparent 1.5px),
    radial-gradient(circle at 26% 75%, #b8ff2c 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 76%, #cfd5cd 0 1px, transparent 1.5px);
  background-size: 360px 300px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-tagline {
  justify-content: center;
  margin: 14px 0 16px;
}

.hero-title {
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5.25rem, 15vw, 13.5rem);
  line-height: 0.77;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-visual-card {
  position: relative;
  width: min(100%, 1180px);
  height: clamp(390px, 51vw, 610px);
  margin: -10px auto 0;
  overflow: hidden;
  border: 1px solid rgba(184, 255, 44, 0.32);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 68%, rgba(184, 255, 44, 0.16), transparent 34%),
    linear-gradient(180deg, #0d100e 0%, #080a09 100%);
}

.hero-title-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 110%;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(7rem, 17vw, 14rem);
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: rgb(242, 241, 234);
  -webkit-text-stroke: 1px rgba(242, 241, 234, 0.22);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  transform: translateX(-50%);
  width: min(70%, 760px);
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
}

.hero-visual-glow {
  position: absolute;
  left: 50%;
  bottom: -24%;
  z-index: 0;
  width: 54%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(184, 255, 44, 0.11);
  filter: blur(72px);
}

.hero-copy-wrap {
  width: min(100%, 860px);
  margin: 30px auto 0;
}

.hero-description {
  width: min(100%, 760px);
  margin: 0 auto 22px;
  color: #a7aca4;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-ca {
  width: min(100%, 680px);
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

/* =========================================================
   Ticker Strip
   ========================================================= */

.ticker-strip {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #080a09;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  animation: tickerMove 22s linear infinite;
}

.ticker-track span {
  color: #e9ece6;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.025em;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

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

/* =========================================================
   About
   ========================================================= */

.about {
  background:
    linear-gradient(rgba(184, 255, 44, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 44, 0.018) 1px, transparent 1px),
    #080a09;
  background-size: 48px 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
  margin-top: 30px;
}

.about-image-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(184, 255, 44, 0.28);
  border-radius: 24px;
  background: #0b0e0c;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.image-corner-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(6, 8, 7, 0.74);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-copy h2 {
  margin: 16px 0 28px;
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.about-copy .about-lead {
  color: #eceee8;
  font-size: 1.18rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-stats div {
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}

.about-stats div:last-child {
  border-right: 0;
}

.about-stats span,
.token-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-stats strong {
  display: block;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

/* =========================================================
   How to Buy
   ========================================================= */

.buy-section {
  background: #080a09;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(184, 255, 44, 0.33);
  border-radius: 20px;
  overflow: hidden;
}

.step-card {
  min-height: 260px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(18, 26, 19, 0.92), rgba(13, 18, 14, 0.92));
}

.step-card:nth-child(odd) {
  border-right: 1px solid rgba(184, 255, 44, 0.18);
}

.step-card:nth-child(-n+2) {
  border-bottom: 1px solid rgba(184, 255, 44, 0.18);
}

.step-number {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.step-card h3 {
  margin: 0 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.step-card p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.buy-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
}

.buy-main-button {
  min-width: 210px;
}

/* =========================================================
   Tokenomics
   ========================================================= */

.tokenomics {
  background: #0a0d0b;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.token-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.token-card-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 10%, rgba(184, 255, 44, 0.22), transparent 32%),
    var(--panel-2);
  border-color: rgba(184, 255, 44, 0.35);
}

.token-card strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.token-card small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   Community
   ========================================================= */

.community {
  padding-top: 80px;
  background: #080a09;
}

.community-card {
  min-height: 360px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border: 1px solid rgba(184, 255, 44, 0.33);
  border-radius: 24px;
  background:
    radial-gradient(circle at 87% 20%, rgba(184, 255, 44, 0.14), transparent 26%),
    #0f1510;
}

.community-card h2 {
  margin-top: 16px;
}

.community-card p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.community-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  padding: 28px 0 36px;
  background: #080a09;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer p,
.back-to-top {
  margin: 0;
  color: #777d75;
  font-size: 0.78rem;
}

.back-to-top:hover {
  color: var(--accent);
}

/* =========================================================
   Responsive — Tablet
   ========================================================= */

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav-card {
    grid-template-columns: auto 1fr auto;
  }
.brand {
  grid-column: 1;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
}
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    background: rgba(8, 10, 9, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 14px;
    border-radius: 9px;
  }

  .nav-links a:hover {
    background: rgba(184, 255, 44, 0.07);
  }

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

  .nav-buy {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual-card {
    height: clamp(390px, 64vw, 570px);
  }

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

  .about-image-card,
  .about-image {
    min-height: 560px;
  }

  .tokenomics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   Responsive — Mobile
   ========================================================= */

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    top: 10px;
  }

  .nav-card {
    min-height: 60px;
    gap: 10px;
    padding: 8px 8px 8px 10px;
    border-radius: 14px;
  }

  .brand-logo-wrap {
    width: 38px;
    border-radius: 9px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 84px 0;
  }

  .section-kicker,
  .eyebrow {
    justify-content: center;
    text-align: center;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .section-kicker span,
  .eyebrow span {
    width: 24px;
  }

  .section-heading-row {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin: 14px 0 28px;
    text-align: center;
  }

  .section-heading-row h2,
  .about-copy h2,
  .community-card h2 {
    font-size: clamp(2.9rem, 14vw, 4.65rem);
  }

  .section-heading-row p {
    margin: 0;
    text-align: center;
  }

  /* Required mobile hero order:
     1 tagline  2 title  3 image  4 description  5 CA  6 buttons */
  .hero {
    padding: 96px 0 46px;
  }

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

  .hero-tagline {
    order: 1;
    margin: 10px 0 14px;
  }

  .hero-title {
    order: 2;
    width: 100%;
    max-width: 100%;
    font-size: clamp(3.85rem, 20vw, 6.2rem) !important;
    line-height: 0.84;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .hero-visual-card {
    order: 3;
    width: 100%;
    height: min(112vw, 470px);
    margin-top: 10px;
    border-radius: 18px;
  }

  .hero-title-ghost {
    font-size: clamp(5rem, 27vw, 8rem);
  }

  .hero-image {
    width: 100%;
    height: 94%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-copy-wrap {
    order: 4;
    display: contents;
  }

  .hero-description {
    order: 4;
    width: 100%;
    margin: 22px auto 16px;
    padding: 0 2px;
    text-align: center;
    font-size: 0.94rem;
  }

  .hero-ca {
    order: 5;
    width: 100%;
    margin: 0;
  }

  .hero-buttons {
    order: 6;
    width: 100%;
    flex-direction: column;
    gap: 9px;
    margin-top: 10px;
  }

  .button {
    width: 100%;
  }

  .ca-box {
    width: 100%;
    min-width: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    padding: 12px;
  }

  .ca-content {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .ca-address {
    width: 100%;
    font-size: 0.78rem;
  }

  .copy-button {
    width: 100%;
  }

  .ticker-track {
    gap: 20px;
    padding: 14px 0;
  }

  .ticker-track span {
    font-size: 1.08rem;
  }

  .about {
    text-align: center;
  }

  .about-grid {
    gap: 32px;
    margin-top: 22px;
  }

  .about-image-card,
  .about-image {
    min-height: 360px;
  }

  .about-image {
    object-fit: cover;
  }

  .about-copy p {
    font-size: 0.94rem;
  }

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

  .about-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-stats div:last-child {
    border-bottom: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .step-card {
    min-height: auto;
    padding: 28px 24px;
    text-align: center;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(184, 255, 44, 0.18);
  }

  .step-card:last-child {
    border-bottom: 0;
  }

  .step-card p {
    margin-inline: auto;
  }

  .buy-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .buy-main-button {
    min-width: 0;
  }

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

  .token-card-featured {
    grid-column: span 1;
  }

  .token-card {
    min-height: 190px;
    text-align: center;
  }

  .community {
    padding-top: 52px;
  }

  .community-card {
    min-height: 0;
    align-items: center;
    gap: 28px;
    padding: 30px 22px;
    text-align: center;
  }

  .community-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .hero-title {
    font-size: clamp(3.45rem, 19vw, 5rem) !important;
  }

  .hero-visual-card {
    height: 116vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }
}
