/* Global styles extracted from index.html */
/* --- CSS VARIABLES & RESET --- */
:root {
  --bg-color: #ffffff;
  --bg-alt: #f9fafb;
  --text-main: #111111;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --border-color: #e5e7eb;
  --primary-color: #111827;
  --accent-hover: #000000;
  --card-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  --card-shadow-hover: 0 16px 32px rgba(0, 0, 0, 0.08);
  --header-height: 80px;
  --font-main: "Bricolage Grotesque", system-ui, sans-serif;
  --font-hand: "Indie Flower", cursive; /* Handwritten font */
  --ai-accent: #6366f1;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

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

button {
  font-family: inherit;
}

/* --- LAYOUT UTILITIES --- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.flex{
  display: flex;
}

.section {
  padding: 4rem 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.section--bordered {
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 4rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 5rem 6rem;
  }
}

/* --- HEADER --- */
.top-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 1.5rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .top-header {
    padding: 0 4rem;
  }
}

.top-header__name {
  background: #000;
  color: #fff;
  width: auto;
  padding: 0 12px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
}

.top-header__link {
  font-weight: 600;
  font-size: 1rem;
}

/* --- HERO SECTION (FINAL REFINEMENT) --- */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  position: relative;
  /* Default Desktop: Bottom Left */
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 6rem;
}

/* Intro Row */
.hero-intro-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

/* Avatar */
.hero-avatar {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  background-color: #e5e7eb;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  transform: rotate(-6deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.hero-avatar:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero-greeting-text {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 300;
  text-align: left;
}

.hero-greeting-name {
  display: block;
  font-weight: 300;
  font-size: 2rem;
}

.hero__title {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  max-width: 100%;
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-annotation {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: normal;
  margin-left: 1rem;
  vertical-align: middle;
  transform: translateY(-5px);
}

/* --- MOBILE SPECIFIC (< 768px) --- */
@media (max-width: 767px) {
  .hero {
    padding-bottom: 3rem;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-intro-row {
    /* MAGIC: Reverse row so Text is Left, Image is Right on Mobile */
    flex-direction: row-reverse;
    justify-content: space-between; /* Push to edges or keep closer? */
    /* Actually reference shows them close, so lets stick to flex-end or space-between but constrained */
    justify-content: space-around; /* Because row-reverse, flex-end is Left */
    gap: 1.5rem;
  }

  /* Since we reversed, we need to align content */
  .hero-greeting-text {
    text-align: left;
  }

  .hero__title {
    font-size: 3rem;
    text-align: left;
  }

  .hero-annotation {
    display: block;
    margin: 1rem 0 0 0;
    text-align: right;
    width: 100%;
  }
}

/* --- DESKTOP SPECIFIC (>= 768px) --- */
@media (min-width: 768px) {
  .hero {
    padding-bottom: 6rem;
  }

  .hero-intro-row {
    /* Standard Row: Image Left, Text Right */
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 2rem;
    margin-left: 0.5rem;
  }

  .hero__title {
    font-size: 5.5rem;
    margin-left: -0.3rem;
  }

  .hero-avatar {
    width: 110px;
    height: 130px;
  }
  .hero-annotation {
    font-size: 2.2rem;
    text-align: left;
    width: auto;
  }
}

@media (min-width: 1024px) {
  /* .hero__title { font-size: 7rem; } */
}

/* --- WORK & FILTER LAYOUT --- */
.work {
  border-top: 1px solid var(--border-color);
}

.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .work__grid {
    grid-template-columns: 300px 1fr;
    gap: 4rem;
  }
}

.work-sidebar {
  position: relative;
}

@media (min-width: 900px) {
  .work-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

.work-sidebar-heading {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-main);
}

@media (min-width: 900px) {
  .work-sidebar-heading {
    font-size: 2.5rem;
  }
}

.filters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 0.8em;
  margin: 0.2em 0;
  border-radius: 999px;
  border: 1px solid var(--text-main);
  background: transparent;
  font-size: 0.6em;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
  vertical-align: middle;
  transform: translateY(-4px);
}

.filters__btn:hover,
.filters__btn--active {
  background: var(--text-main);
  color: #ffffff;
}

.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* --- PROJECT CARD --- */
.project {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project.hidden {
  display: none;
}
.project.fade-out {
  opacity: 0;
  pointer-events: none;
}

.project__bg {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.project__overlay {
  position: static;
  opacity: 1;
  background: transparent;
  color: var(--text-main);
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.thumb-1 {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}
.thumb-2 {
  background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}
.thumb-3 {
  background: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}
.thumb-4 {
  background: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
}
.thumb-5 {
  background: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
}
.thumb-6 {
  background: linear-gradient(-20deg, #e6dee9 0%, #afc7ce 100%);
}

.project__tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.7;
  font-weight: 600;
}

.project__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.project__note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.project__link {
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.project__link::after {
  content: " ↗";
  margin-left: 4px;
}
.project__link:hover {
  background: #f9fafb;
  border-color: var(--text-main);
}

@media (min-width: 1024px) {
  .project {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    overflow: hidden;
    background: #f3f4f6;
  }

  .project__bg {
    height: 100%;
    border-radius: 0;
  }

  .project__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    padding: 2rem;
  }

  .project:hover .project__bg {
    filter: blur(8px) brightness(0.8);
    transform: scale(1.05);
  }

  .project:hover .project__overlay {
    opacity: 1;
  }

  .project__note {
    display: none;
  }
  .project__tag {
    opacity: 0.9;
    color: #fff;
  }

  .project__link {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .project__link:hover {
    background: transparent;
  }
}

/* --- TOOLS SECTION --- */
.tools {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tools-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  max-width: 30rem;
  line-height: 1.2;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tool-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tool-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tool-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 0.5rem;
  width: 100%;
}

.tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-list li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

/* --- COUNTRIES SECTION --- */
.countries-section {
  border-top: 1px solid var(--border-color);
  background-color: #ffffff;
  padding-bottom: 4rem;
}

.countries-body {
  padding: 3rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .countries-body {
    padding: 4rem;
  }
}
@media (min-width: 1024px) {
  .countries-body {
    padding: 5rem 6rem;
  }
}

.countries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .countries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.countries-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 2.5rem; */
}

.countries-content {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-main);
  max-width: 38rem;
}

.countries-photo-wrapper {
  position: relative;
  display: inline-block;
  align-self: flex-end;
  margin-right: 4rem;
}

.countries-img {
  width: 240px;
  height: auto;
  border-radius: 8px;
  transform: rotate(3deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.countries-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.countries-arrow {
  position: absolute;
  right: 0;
  top: 110%;
  width: 40px;
  color: #6366f1;
  pointer-events: none;
}

.countries-arrow-text {
  position: absolute;
  right: 40px;
  top: 115%;
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--text-main);
  transform: rotate(-5deg);
  width: max-content;
}

@media (min-width: 900px) {
  .countries-arrow {
    right: -70px;
    top: 40%;
    width: 50px;
  }
  .countries-arrow-text {
    right: -130px;
    top: 45%;
    font-size: 1.1rem;
  }
}

/* --- STICKY METRICS HEADERS --- */
.sticky-section-header {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  margin-top: -1px;
}

@media (min-width: 768px) {
  .sticky-section-header {
    padding: 1.25rem 4rem;
  }
}
@media (min-width: 1024px) {
  .sticky-section-header {
    padding: 2rem 6rem;
  }
}

/* --- NEW METRIC BODY FIX --- */
.metric-body {
  padding: 3rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .metric-body {
    padding: 3rem 4rem;
  }
}
@media (min-width: 1024px) {
  .metric-body {
    padding: 3rem 6rem;
  }
}

.metric-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.metric-pill {
  background: #000;
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.metric-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-main);
}

/* --- TIMELINE (FIXED) --- */
.timeline {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.1rem;
  color: var(--text-main);
}

.timeline__row:first-child {
  border-top: 1px solid var(--border-color);
}

/* Desktop Grid */
@media (min-width: 768px) {
  .timeline__row {
    grid-template-columns: 180px 300px 1fr;
    gap: 2rem;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .timeline__year {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .timeline__company {
    color: var(--text-muted);
    font-size: 0.95rem;
  }
}

.timeline__year {
  font-weight: 400;
  color: var(--text-main);
}

.timeline__company {
  font-weight: 400;
  color: var(--text-main);
}

.timeline__role {
  font-weight: 400;
  color: var(--text-main);
}

/* --- PHILOSOPHY SECTION --- */
.philosophy-section {
  background: var(--bg-alt);
  position: relative;
  overflow: visible;
  padding-bottom: 6rem;
}

.philosophy-header-group {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  width: 100%;
}

.philosophy-heading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
}

@media (max-width: 768px) {
  .philosophy-header-group {
    flex-direction: column;
    gap: 1.5rem; /* optional spacing */
  }
}

@media (min-width: 768px) {
  .philosophy-heading {
    font-size: 3.5rem;
  }
}

.philosophy-cta-container {
  display: inline-block;
  position: relative;
  margin-top: 1rem;
  width: 100%;
}

.philosophy-cta-pill {
  background: #000;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2;
  position: relative;
}

.philosophy-cta-pill:hover {
  transform: scale(1.05);
}

.philosophy-arrow {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 60px;
  height: auto;
  transform: rotate(-10deg);
  pointer-events: none;
  color: #8b5cf6;
  z-index: 1;
}

@media (min-width: 768px) {
  .philosophy-arrow {
    left: -50px;
    width: 70px;
  }
}

.philosophies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .philosophies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .philosophies-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* 3D Flip Card Container */
.philosophy-card {
  position: relative;
  min-height: 260px;
  cursor: pointer;
}

.philosophy-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #ffffff;
}

.philosophy-front,
.philosophy-back {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.philosophy-front {
  background-color: #ffffff;
  color: var(--text-main);
  z-index: 2;
}

.philosophy-back {
  background-color: #000000;
  color: #ffffff;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  z-index: 1;
}

.philosophy-card:hover .philosophy-front,
.philosophy-card:focus-within .philosophy-front {
  opacity: 0;
  transform: translateY(-8px);
}

.philosophy-card:hover .philosophy-back,
.philosophy-card:focus-within .philosophy-back {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
}

.philosophy-text {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 1rem;
}

.philosophy-desc {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

@media (min-width: 768px) {
  .philosophy-text {
    font-size: 1.80rem;
  }
  .philosophy-front,
  .philosophy-back {
    padding: 2rem;
  }
}

.philosophy-icon {
  width: 28px;
  height: 28px;
  color: currentColor;
}

/* --- AI PLAYGROUND SECTION --- */
.ai-container {
  max-width: 42rem;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.ai-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-input {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.ai-input:focus {
  border-color: var(--ai-accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-ai:hover {
  border-color: var(--ai-accent);
  color: var(--ai-accent);
  transform: translateY(-2px);
}

.btn-ai:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ai-output-area {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  min-height: 100px;
  position: relative;
}

.ai-placeholder {
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 1.5rem;
}

.ai-result-content {
  white-space: pre-wrap;
  line-height: 1.7;
  color: var(--text-main);
}

/* Loading Spinner for AI */
.ai-loader {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.ai-loader.active {
  display: flex;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  border-top-color: var(--ai-accent);
  animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- CONTACT --- */
.contact__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--primary-color);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--text-main);
}

.btn--ghost:hover {
  color: var(--text-muted);
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

@media (min-width: 768px) {
  .footer {
    padding: 2rem 4rem;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 2rem 6rem;
  }
}

/* --- TOAST NOTIFICATION --- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
