:root {
  --bg-1: #05070b;
  --bg-2: #0a0f18;
  --bg-3: #101826;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f7fb;
  --muted: #aab5c5;
  --muted-2: #8290a4;
  --gold: #d5b16d;
  --gold-2: #f0d8a3;
  --gold-3: #f6e7c6;
  --silver: #cfd7e2;
  --silver-2: #eef3f9;
  --shadow-deep: 0 40px 100px rgba(0, 0, 0, 0.5);
  --shadow-panel: 0 16px 50px rgba(0, 0, 0, 0.3);
  --shadow-soft-gold: 0 10px 30px rgba(213, 177, 109, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(213, 177, 109, 0.14), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(207, 215, 226, 0.08), transparent 18%),
    radial-gradient(circle at 50% 120%, rgba(213, 177, 109, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 38%, var(--bg-3) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 216, 163, 0.05), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(207, 215, 226, 0.05), transparent 35%);
  z-index: -2;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.35;
  animation: floatGlow 14s ease-in-out infinite;
}

.site-bg::before {
  width: 340px;
  height: 340px;
  top: 80px;
  left: -60px;
  background: rgba(213, 177, 109, 0.16);
}

.site-bg::after {
  width: 300px;
  height: 300px;
  right: -40px;
  top: 180px;
  background: rgba(207, 215, 226, 0.12);
  animation-delay: -5s;
}

.legal-bg {
  background:
    radial-gradient(circle at 20% 8%, rgba(213, 177, 109, 0.08), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(207, 215, 226, 0.05), transparent 18%);
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 8, 13, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    linear-gradient(135deg, var(--gold), var(--silver));
  color: #0a0f18;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.38),
    0 12px 24px rgba(0, 0, 0, 0.25);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.24) 48%,
    transparent 66%
  );
  transform: translateX(-120%) rotate(12deg);
  animation: shimmerSweep 6.5s ease-in-out infinite;
}

.brand-mark.small {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: 0.92rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 0.18s ease, opacity 0.18s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: 78px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(213, 177, 109, 0.22);
  background: rgba(213, 177, 109, 0.08);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-copy h1,
.section-intro h2,
.showcase-copy h2,
.legal-band-copy h2,
.legal-hero h1 {
  margin: 16px 0 12px;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  max-width: 11ch;
  text-wrap: balance;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid var(--line);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-primary {
  color: #0a0f18;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--gold), #f2ddb2);
  box-shadow: var(--shadow-soft-gold);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(213, 177, 109, 0.28);
}

.shimmer-button {
  position: relative;
  overflow: hidden;
}

.shimmer-button::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    120deg,
    transparent 36%,
    rgba(255,255,255,0.38) 50%,
    transparent 64%
  );
  transform: translateX(-120%) rotate(10deg);
  animation: shimmerSweep 4.8s ease-in-out infinite;
}

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

.button-secondary:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-chip {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.meta-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.15);
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.8;
}

.glow-gold {
  width: 260px;
  height: 260px;
  background: rgba(213, 177, 109, 0.18);
  top: 90px;
  right: 20px;
  animation: floatGlow 10s ease-in-out infinite;
}

.glow-silver {
  width: 230px;
  height: 230px;
  background: rgba(207, 215, 226, 0.14);
  left: 10px;
  bottom: 90px;
  animation: floatGlow 12s ease-in-out infinite reverse;
}

.phone {
  position: relative;
  width: 360px;
  max-width: 100%;
  padding: 14px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)),
    linear-gradient(180deg, #0d1420 0%, #0a111c 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.phone-premium {
  animation: phoneFloat 7.5s ease-in-out infinite;
}

.phone-premium::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 41px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.18),
    rgba(213,177,109,0.18),
    rgba(255,255,255,0.05)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.phone-premium::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.02) 24%,
    transparent 45%
  );
  pointer-events: none;
}

.phone-top {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.phone-camera {
  width: 110px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.04);
}

.phone-screen {
  border-radius: 32px;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(240, 216, 163, 0.08), transparent 26%),
    linear-gradient(180deg, #0d1521 0%, #101927 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.screen-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.app-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mini-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.mini-label.muted {
  color: var(--muted);
}

.hero-card {
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow-panel);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
}

.card-kicker,
.section-link,
.chart-caption,
.holding-note {
  color: var(--muted);
}

.portfolio-value {
  margin-top: 4px;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.portfolio-delta {
  margin-top: 4px;
  color: #cce8c4;
  font-weight: 600;
  font-size: 0.92rem;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-title {
  font-weight: 700;
}

.section-link {
  font-size: 0.88rem;
}

.holding-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.18s ease;
}

.holding-row:hover {
  transform: translateX(2px);
}

.holding-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.holding-name {
  font-weight: 700;
}

.holding-note {
  font-size: 0.85rem;
}

.holding-amount {
  font-weight: 700;
  color: var(--silver-2);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 140px;
  margin-top: 8px;
}

.chart-bars span {
  flex: 1;
  display: block;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--gold), rgba(207, 215, 226, 0.72));
  box-shadow: 0 10px 20px rgba(213, 177, 109, 0.12);
  animation: barPulse 5s ease-in-out infinite;
  transform-origin: bottom;
}

.chart-bars span:nth-child(1) { height: 26%; animation-delay: 0s; }
.chart-bars span:nth-child(2) { height: 39%; animation-delay: 0.15s; }
.chart-bars span:nth-child(3) { height: 34%; animation-delay: 0.3s; }
.chart-bars span:nth-child(4) { height: 54%; animation-delay: 0.45s; }
.chart-bars span:nth-child(5) { height: 61%; animation-delay: 0.6s; }
.chart-bars span:nth-child(6) { height: 58%; animation-delay: 0.75s; }
.chart-bars span:nth-child(7) { height: 72%; animation-delay: 0.9s; }
.chart-bars span:nth-child(8) { height: 88%; animation-delay: 1.05s; }

.chart-caption {
  margin-top: 12px;
  font-size: 0.92rem;
}

.floating-stat {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-deep);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.floating-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
}

.stat-a {
  top: 140px;
  left: -10px;
}

.stat-b {
  right: -4px;
  bottom: 120px;
}

.floating-label {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.floating-value {
  font-weight: 700;
}

.trust-strip {
  padding: 10px 0 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow-panel);
}

.trust-strip-inner span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: 82px 0;
}

.section-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.04));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-intro h2,
.showcase-copy h2,
.legal-band-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-intro p,
.showcase-copy p,
.legal-band-copy p,
.legal-subtitle {
  color: var(--muted);
  font-size: 1.04rem;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.premium-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-panel);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-weight: 800;
  color: #0d1420;
  background: linear-gradient(135deg, var(--gold), #edd39a);
  box-shadow: var(--shadow-soft-gold);
}

.premium-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.premium-card p {
  margin: 0;
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.showcase-phones {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 580px;
}

.phone-showcase {
  width: 280px;
  position: relative;
  z-index: 2;
}

.phone-behind {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 1;
  opacity: 0.85;
  transform: scale(0.92);
}

.showcase-panel {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.showcase-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0.08) 0%,
    transparent 24%,
    transparent 76%,
    rgba(255,255,255,0.04) 100%
  );
  pointer-events: none;
}

.panel-line {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.65;
}

.panel-content {
  display: grid;
  gap: 18px;
}

.showcase-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.showcase-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.showcase-label,
.legal-tile-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.legal-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.legal-band-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-tile {
  display: block;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-panel);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.legal-tile:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 50px rgba(0,0,0,0.32);
}

.legal-tile h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.legal-tile p {
  margin: 0;
  color: var(--muted);
}

.legal-page {
  padding: 54px 0 84px;
}

.legal-wrap {
  max-width: 980px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 22px;
}

.legal-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.last-updated {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.legal-card {
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-panel);
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.legal-card p,
.legal-card li {
  color: #dde4ed;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: var(--gold-2);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 0 38px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-title {
  font-weight: 700;
}

.footer-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.18s ease;
}

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

@keyframes shimmerSweep {
  0% {
    transform: translateX(-130%) rotate(12deg);
  }
  55%,
  100% {
    transform: translateX(130%) rotate(12deg);
  }
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(12px) translateX(6px) scale(1.04);
  }
}

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

@keyframes barPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.96;
  }
  50% {
    transform: scaleY(1.035);
    opacity: 1;
  }
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .showcase-grid,
  .legal-band {
    grid-template-columns: 1fr;
  }

  .showcase-phones {
    min-height: auto;
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

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

  .floating-stat {
    display: none;
  }
}

@media (max-width: 860px) {
  .premium-grid,
  .legal-band-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 42px;
  }

  .phone {
    width: 100%;
    max-width: 360px;
  }



  .legal-card {
    padding: 24px;
  }

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