:root {
  --accent: #5a4be7;
  --accent-dark: #302587;
  --accent-soft: #efecff;
  --mint: #dff8ed;
  --ink: #20202c;
  --muted: #6c687d;
  --line: #ded9ef;
  --paper: #ffffff;
  --bg: #f8f7ff;
  --shadow: 0 24px 70px rgba(48, 37, 135, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(248, 247, 255, 0.82);
  border-bottom: 1px solid rgba(222, 217, 239, 0.82);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header.simple {
  position: static;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  gap: 10px;
}

.brand img {
  border-radius: 14px;
  height: 38px;
  width: 38px;
}

.site-header nav,
.site-footer nav {
  align-items: center;
  display: flex;
  gap: 22px;
}

.site-header nav a,
.site-footer nav a,
.footer-contact-button {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-contact-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.footer-contact-button:hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.header-cta,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.header-cta,
.primary-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(90, 75, 231, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--accent-dark);
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 86px clamp(20px, 4vw, 44px);
}

.slim {
  padding-bottom: 42px;
  padding-top: 42px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  min-height: calc(100vh - 72px);
  opacity: 1;
  transform: none;
}

.eyebrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.94;
  margin-bottom: 24px;
  max-width: 780px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-subtitle {
  font-size: 22px;
  max-width: 650px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 34px 0 28px;
}

.trust-row span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 14px;
}

.trust-row .wide-chip {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-stage {
  min-height: 620px;
  position: relative;
}

.phone {
  background: #fff;
  border: 8px solid #191923;
  border-radius: 46px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.phone::before {
  background: #12121a;
  border-radius: 0 0 18px 18px;
  content: "";
  height: 28px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 112px;
  z-index: 2;
}

.hero-phone {
  animation: float 4.8s ease-in-out infinite;
  margin: 0 auto;
  max-width: 360px;
  min-height: 610px;
}

.phone-status,
.app-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.phone-status {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 22px;
  padding-top: 6px;
}

.app-top p {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  margin: 0;
}

.app-top button,
.lyric-card button {
  background: var(--accent);
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  height: 48px;
  width: 48px;
}

.song-card {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding: 14px;
}

.song-card img {
  border-radius: 16px;
  height: 78px;
  object-fit: cover;
  width: 78px;
}

.song-card strong,
.song-card span {
  display: block;
}

.song-card strong {
  font-size: 18px;
}

.song-card span {
  color: var(--muted);
  font-weight: 800;
  margin-top: 4px;
}

.lyric-card,
.translate-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-top: 18px;
  padding: 18px;
}

.lyric-card {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.lyric-card span {
  background: #f1eff9;
  border-radius: 10px;
  font-weight: 900;
  padding: 9px 11px;
}

.lyric-card .selected {
  background: var(--accent);
  color: #fff;
}

.translate-card p {
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}

.translate-card strong {
  display: block;
  font-size: 38px;
}

.translate-card small {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 8px;
}

.floating-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: absolute;
}

.mini-review {
  left: -18px;
  padding: 16px 20px;
  top: 90px;
}

.mini-review span,
.mini-review strong {
  display: block;
}

.mini-review span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.mini-review strong {
  color: var(--accent);
  font-size: 24px;
}

.mini-speech {
  bottom: 110px;
  color: var(--accent-dark);
  font-weight: 950;
  padding: 16px 18px;
  right: -12px;
}

.logos {
  text-align: center;
}

.logos p {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-strip {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.album-strip img {
  animation: albumDrift 7s ease-in-out infinite;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(32, 32, 44, 0.12);
  height: 92px;
  object-fit: cover;
  width: 92px;
}

.album-strip img:nth-child(2n) {
  animation-delay: -1.6s;
}

.album-strip img:nth-child(3n) {
  animation-delay: -3.2s;
}

.tutorial-section {
  padding-top: 56px;
}

.tutorial-player {
  background:
    radial-gradient(circle at 22% 18%, rgba(223, 248, 237, 0.96), transparent 34%),
    linear-gradient(145deg, #ffffff, #f0edff);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden;
  padding: clamp(18px, 4vw, 34px);
}

.tutorial-screen {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  margin: 0 auto;
  max-width: 680px;
  padding: clamp(18px, 4vw, 30px);
}

.tutorial-topline {
  align-items: center;
  color: var(--accent);
  display: flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tutorial-topline b,
.tutorial-topline strong {
  color: var(--ink);
}

.tutorial-progress {
  background: #e2def2;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.tutorial-progress span {
  background: var(--accent);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 0.45s ease;
  width: 25%;
}

.tutorial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  margin-top: 22px;
  min-height: 330px;
  padding: clamp(20px, 4vw, 30px);
  position: relative;
}

.tutorial-dots {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.tutorial-dots span {
  background: var(--accent-soft);
  border-radius: 999px;
  height: 12px;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    width 0.3s ease;
  width: 12px;
}

.tutorial-dots span.active {
  background: var(--accent);
  transform: scale(1.08);
  width: 40px;
}

.tutorial-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tutorial-card h3 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 20px;
  transition: opacity 0.25s ease;
}

.tutorial-input {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 12px;
}

.tutorial-input span {
  color: var(--muted);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tutorial-input b {
  background: var(--accent);
  border-radius: 14px;
  color: #fff;
  flex: 0 0 auto;
  padding: 12px 16px;
}

.tutorial-song {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  gap: 14px;
  padding: 14px;
  transition: transform 0.45s ease;
}

.tutorial-song img {
  border-radius: 14px;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.tutorial-song strong,
.tutorial-song span {
  display: block;
}

.tutorial-song strong {
  font-size: 18px;
}

.tutorial-song span {
  color: var(--muted);
  font-weight: 800;
  margin-top: 4px;
}

.tutorial-caption {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px auto 0;
  max-width: 680px;
}

.tutorial-caption span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
  text-align: center;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.tutorial-caption span.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.split,
.product-showcase {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.8fr 1fr;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article,
.feature-grid article,
.pricing-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(48, 37, 135, 0.08);
  padding: 24px;
}

.steps span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  margin-bottom: 14px;
  width: 34px;
}

.card-flow-section {
  padding-top: 58px;
}

.card-flow-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.flow-phone {
  background: linear-gradient(180deg, #ffffff 0%, #f5f2ff 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 52px rgba(48, 37, 135, 0.1);
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.flow-phone::before {
  background: #181821;
  border-radius: 0 0 16px 16px;
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 78px;
}

.flow-phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 24px 0 18px;
}

.flow-phone-top span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.flow-phone-top b {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.flow-phone img {
  border-radius: 18px;
  height: 92px;
  margin-bottom: 18px;
  object-fit: cover;
  width: 92px;
}

.flow-lyrics {
  align-content: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 148px;
  padding: 18px;
}

.flow-lyrics span {
  background: #f0eef8;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 900;
  padding: 10px 12px;
}

.flow-lyrics .flow-selected {
  animation: pulseChip 1.9s ease-in-out infinite;
  background: var(--accent);
  color: #fff;
}

.flow-phone button {
  background: var(--accent);
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  margin-top: 18px;
  min-height: 54px;
  width: 100%;
}

.sentence-card,
.review-stack div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}

.sentence-card {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.sentence-card small,
.review-stack small {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sentence-card strong {
  font-size: 26px;
  line-height: 1.1;
}

.sentence-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
  margin: 16px 0 0;
}

.review-stack {
  display: grid;
  gap: 14px;
}

.review-stack div {
  animation: floatCardSmall 3s ease-in-out infinite;
}

.review-stack div:last-child {
  animation-delay: -1.2s;
}

.review-stack strong,
.review-stack span {
  display: block;
}

.review-stack strong {
  font-size: 22px;
  line-height: 1.12;
}

.review-stack span {
  color: var(--muted);
  font-weight: 850;
  margin-top: 8px;
}

.center-copy {
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-icon {
  align-items: center;
  background: var(--accent-soft);
  border-radius: 18px;
  color: var(--accent);
  display: flex;
  font-size: 24px;
  font-weight: 950;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}

.showcase-phone {
  background: var(--paper);
  max-width: 340px;
}

.showcase-phone h3 {
  color: var(--accent);
  font-size: 20px;
  text-align: center;
}

.direction-toggle {
  background: var(--accent-soft);
  border-radius: 18px;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr 1fr;
  margin: 18px 0;
  padding: 5px;
}

.direction-toggle span {
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 9px;
  text-align: center;
}

.direction-toggle .active {
  background: var(--accent);
  color: #fff;
}

.big-card {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  padding: 22px;
}

.big-card small {
  color: var(--accent);
  font-weight: 950;
}

.big-card strong {
  font-size: 42px;
  margin: 16px 0 8px;
}

.answer-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1.3fr;
  margin-top: 16px;
}

.answer-row button {
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 15px;
  font-weight: 950;
  min-height: 54px;
}

.answer-row button:last-child {
  background: var(--accent);
  color: #fff;
}

.showcase-copy ul {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.8;
  padding-left: 22px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid article {
  min-height: 245px;
}

.price {
  color: var(--accent);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 16px;
}

.highlight-plan {
  border-color: var(--accent) !important;
  transform: translateY(-12px);
}

.plan-badge {
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 18px;
  padding: 8px 12px;
}

.final-cta {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  display: flex;
  gap: 34px;
  justify-content: space-between;
  margin-bottom: 54px;
  padding-bottom: 46px;
  padding-top: 46px;
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 760px;
}

.final-cta p {
  margin-bottom: 0;
  max-width: 720px;
}

.download-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer p {
  font-size: 13px;
  margin: 0;
}

.contact-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 22px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  background: rgba(26, 24, 39, 0.48);
  inset: 0;
  position: absolute;
}

.contact-modal__panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-width: 480px;
  padding: 34px;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
  width: min(100%, 480px);
}

.contact-modal.is-open .contact-modal__panel {
  transform: translateY(0) scale(1);
}

.contact-modal__panel h2 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 14px;
}

.contact-modal__panel p:not(.eyebrow) {
  font-size: 17px;
}

.contact-modal__close {
  align-items: center;
  background: var(--accent-soft);
  border: 0;
  border-radius: 50%;
  color: var(--accent-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
}

.contact-email {
  background: var(--accent);
  border-radius: 18px;
  color: #fff;
  display: block;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 950;
  padding: 16px 18px;
  text-align: center;
  word-break: break-word;
}

.legal-page {
  margin: 0 auto;
  max-width: 860px;
  padding: 82px clamp(20px, 5vw, 44px);
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-page h2 {
  border-top: 1px solid var(--line);
  font-size: 28px;
  margin-top: 38px;
  padding-top: 28px;
}

.legal-page a {
  color: var(--accent);
  font-weight: 900;
}

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

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

@keyframes pulseChip {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(90, 75, 231, 0);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 12px 24px rgba(90, 75, 231, 0.2);
    transform: translateY(-2px);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .split,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .card-flow-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-caption {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-plan {
    transform: none;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .download-actions,
  .download-actions .primary-button,
  .download-actions .secondary-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 18px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .section {
    padding: 60px 18px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .phone {
    border-radius: 36px;
    padding: 18px;
  }

  .hero-phone {
    max-width: 320px;
    min-height: 560px;
  }

  .floating-card {
    display: none;
  }

  .album-strip {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .album-strip img {
    flex: 0 0 auto;
    height: 74px;
    width: 74px;
  }

  .tutorial-player {
    border-radius: 28px;
    margin-left: -2px;
    margin-right: -2px;
  }

  .tutorial-screen {
    border-radius: 22px;
  }

  .tutorial-input {
    align-items: stretch;
    flex-direction: column;
  }

  .tutorial-input b {
    text-align: center;
  }

  .tutorial-caption {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
