@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap");

:root {
  --bg: #fbfbfc;
  --text: #1b1f24;
  --text-muted: #7e8794;
  --muted: #7e8794;
  --accent: #ff7a00;
  --border: #eeeeee;
  --card-bg: #ffffff;
  --chip-bg: #f5f7fa;
  --dark: #22222a;
  --cream: #fff4ea;
  --ring: rgba(255, 122, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  background: #ffffff;
}

a,
button {
  color: var(--accent);
  text-decoration: none !important;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a:hover,
a:focus,
a:active,
button:hover,
button:focus,
button:active {
  text-decoration: none !important;
  outline: none;
}

.container {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.about-heading {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  position: sticky;
  top: 90px;
  margin: 0;
}

.about-lead {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.about-body {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0 0 12px 0;
}

.about-meta {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  margin-top: 12px;
  flex-wrap: wrap;
}

.about-meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #f97316;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.about-meta-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.hero-shell {
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: visible;
  padding-top: 48px;
  padding-bottom: 0;
  min-height: 100vh;
}

#ai-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}



.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Mobile: Always solid white navbar background */
@media (max-width: 768px) {
  .navbar {
    background: #ffffff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
  }
}

.navbar.is-scrolled {
  padding: 4px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.logo-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a:hover,
.nav-links a:active,
.nav-links a:focus {
  color: #f97316;
  text-decoration: none !important;
}
.nav-links a:focus,
.btn-primary:focus,
.btn-outline:focus,
.contact-submit:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-actions .btn-primary {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 100px;
  background: #f97316;
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-actions .btn-primary:hover {
  background: #ea6c00;
  text-decoration: none !important;
}

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.25);
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #ea6c00;
  transform: scale(1.03);
}

.btn-primary:active {
  background: #c45c00;
  transform: scale(0.98);
}

.btn-outline {
  background: #ffffff;
  color: var(--text);
  border: 1px solid #e9edf3;
  box-shadow: 0 10px 20px rgba(18, 18, 24, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-outline:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
  transform: scale(1.03);
}

.btn-outline:active {
  background: #ea6c00;
  color: #fff;
  transform: scale(0.98);
}

.hero {
  padding-top: 50px;
  padding-bottom: 80px;
  min-height: unset;
  position: relative;
  background: none;
}



.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-height: unset;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
  border: 2px solid #ffe4d0;
  font-size: 1.2rem;
  box-shadow: 0 20px 40px rgba(30, 34, 45, 0.12);
  margin-bottom: 12px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-size: 0.75rem;
  color: #8d96a6;
  font-weight: 600;
}

.hero-title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  color: #1a1d23;
  line-height: 1.1;
  animation: slide-in 0.8s ease-out both;
  word-break: break-word;
  max-width: 100%;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
    min-height: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
    min-height: 4.2rem;
  }
}

.hero-cursor {
  display: inline-block;
  width: 6px;
  height: 0.95em;
  background: var(--accent);
  margin-left: 8px;
  border-radius: 4px;
  transform: translateY(6px);
}

#typewriter {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  color: #111;
  display: inline-block;
  min-width: 1px;
}

.blinking-cursor {
  color: #f97316;
  animation: blink 1s step-start infinite;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-bio {
  margin: 0 0 12px;
  color: #8a929f;
  font-size: 1rem;
  max-width: 620px;
  opacity: 0;
  animation: fade-in 0.7s ease-out 0.5s forwards;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 0;
  justify-content: center;
  width: 100%;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats {
  background: #fff;
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.stat-number {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 4px;
  line-height: 1.1;
}

.stat-card {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 12px;
  height: 100%;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  word-break: break-word;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  padding: 20px;
  min-width: 0;
}

.project-card h3 {
  margin: 12px 0 4px;
}

.project-outcome {
  margin: 0 0 12px;
  color: var(--muted);
}

.project-link {
  font-size: 13px;
  font-weight: 600;
  color: #f97316;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.project-link:hover {
  text-decoration: none !important;
  color: #f97316;
}

.project-status {
  display: flex;
  align-items: center;
}

.stat-card {
  background: #fbfaf8;
  border: 1px solid #f0efed;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.js-enabled .stat-card {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}

.js-enabled .stat-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .stat-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 6px;
  line-height: 1.2;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.thumb-green {
  background: #ecfdf5;
}

.thumb-purple {
  background: #f5f3ff;
}

.thumb-icon {
  font-weight: 700;
  color: var(--accent);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--chip-bg);
  color: var(--muted);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
}

.skills-section {
  background: #fff;
  padding: 60px 0;
}

.skills-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.skill-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-group-title {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 100px;
  padding: 6px 14px;
  transition: all 0.2s;
  cursor: default;
}

.skill-tag:hover {
  background: #fff4ec;
  border-color: #f97316;
  color: #f97316;
}

.timeline {
  display: grid;
  gap: 16px;
  border-left: 2px solid #e0e0e0;
  padding-left: 28px;
  padding-top: 20px;
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.timeline-item:hover {
  background: rgba(255, 122, 0, 0.04);
  padding-left: 20px;
}

.timeline-dot {
  position: absolute;
  left: -35px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 1);
}

.timeline-role {
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
}

.timeline-desc {
  margin: 0;
  color: #888888;
  word-break: break-word;
  font-size: 0.95rem;
  line-height: 1.5;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.timeline-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.timeline-date {
  display: inline-block;
  background: #f5f5f5;
  color: #666;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.writing-list {
  display: grid;
  gap: 16px;
}

.writing-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  min-width: 0;
}

.writing-date {
  color: var(--muted);
}

.writing-title {
  font-weight: 600;
}

.writing-tag {
  color: var(--accent);
  font-size: 0.85rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.availability {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.9rem;
}

.icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-section {
  background: #fbfaf8;
  padding: 64px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-heading {
  font-family: "Syne", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-height: 44px;
}

.social-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #f97316;
  flex-shrink: 0;
}

.social-icon {
  color: inherit;
}

.social-label {
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.social-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  transition: color 0.2s;
}

.social-item:hover .social-name {
  color: #f97316;
}

.project-link:hover,
.footer-link:hover,
.social-name:hover,
.contact-link:hover {
  text-decoration: none !important;
  color: #f97316;
}

.contact-right {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: #fbfaf8;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
  font-family: "DM Sans", sans-serif;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: #f97316;
  background: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #ccc;
}

.contact-submit {
  width: 100%;
  background: #f97316;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: "DM Sans", sans-serif;
  min-height: 44px;
}

.contact-submit:hover {
  background: #ea6c00;
  transform: scale(1.01);
}

.contact-submit:active {
  background: #c45c00;
  transform: scale(0.98);
}

.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-headline {
  font-family: "Syne", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 12px;
  max-width: 400px;
}

.footer-highlight {
  color: #f97316;
}

.footer-sub {
  font-size: 14px;
  color: #888;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-link:hover {
  border-color: #f97316;
  color: #f97316;
  text-decoration: none !important;
}

.footer-email {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
  min-height: 44px;
}

.footer-email:hover {
  color: #f97316;
}

.footer-location {
  font-size: 13px;
  color: #666;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    padding: 70px 0 90px;
  }
}

@media (max-width: 768px) {
  .hero-kicker {
    letter-spacing: 0.25rem;
  }

  .hero-title {
    font-size: clamp(34px, 8vw, 52px);
  }

  .hero-photo {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 640px) {
  .hero-shell {
    padding-top: 80px;
  }
  .container {
    padding: 0 20px;
  }

  .section-header h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .contact-heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-heading {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    width: 100%;
  }

  .skill-tags {
    gap: 8px;
  }

  .writing-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .nav-content {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-primary {
    padding: 8px 16px;
    font-size: 10px;
    min-height: 44px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 32px;
  }

  .hero-title {
    font-size: clamp(24px, 7vw, 34px);
    padding-left: 0;
    padding-right: 0;
  }

  .hero-bio {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta a {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-right {
    padding: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-headline {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hero-shell {
    padding-top: 76px;
  }
  .container {
    padding: 0 16px;
  }

  .hero-photo {
    width: 108px;
    height: 108px;
  }

  .hero-kicker {
    font-size: 0.65rem;
  }

  .hero-bio {
    font-size: 0.9rem;
  }

  .stat-label {
    font-size: 9px;
  }

  .timeline {
    padding-left: 24px;
    padding-top: 16px;
    gap: 12px;
  }

  .timeline-dot {
    left: -31px;
  }

  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-header h3 {
    font-size: 1rem;
  }

  .timeline-date {
    font-size: 0.75rem;
  }

  .writing-item {
    grid-template-columns: 1fr;
  }

  .footer-email {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}
