:root {
  --bg-1: #f0f0f0;
  --bg-2: #e0e0e0;
  --text: #1a1a1a;
  --muted: #555555;
  --primary: #cc00cc; /* Darker Magenta */
  --accent: #00cccc;  /* Darker Cyan */
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: var(--bg-1);
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none;
  -webkit-user-select: none;
  user-select: none;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  100% {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}

body {
  margin: 0;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 2000;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a[href^="mailto:"],
a[href^="tel:"],
input,
textarea,
select,
button {
  -webkit-user-select: text;
  user-select: text;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind content */
  pointer-events: none; /* Let clicks pass through */
  opacity: 1;
}

main {
  position: relative;
  z-index: 1; /* Content above canvas */
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 100;
  transition: padding 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  padding: 20px 0;
  background: rgba(240, 240, 240, 0.8);
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-name {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.brand-logo {
  height: 120px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
  filter: invert(1);
}

.site-header.scrolled .brand-logo {
  height: 90px;
}

.brand {
  text-decoration: none;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001; /* Above nav */
  padding: 10px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(240, 240, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    font-size: 24px;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav.active a {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Stagger animation for links */
  .nav.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav.active a:nth-child(2) { transition-delay: 0.2s; }
  .nav.active a:nth-child(3) { transition-delay: 0.3s; }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

.btn-primary {
  display: inline-block;
  padding: 20px 40px;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--accent);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 204, 204, 0.2), inset 0 0 10px rgba(0, 204, 204, 0.1);
}

.btn-primary:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(0, 204, 204, 0.6), inset 0 0 20px rgba(0, 204, 204, 0.4);
  transform: translateY(-2px);
  text-shadow: none;
}

.btn-primary:active {
  transform: translateY(0);
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: clamp(40px, 8vw, 90px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
  letter-spacing: -2px;
}

.highlight {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 204, 204, 0.4));
}

.text-gradient-animated {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent), var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 300% 100%;
  animation: gradientShift 12s linear infinite;
  filter: drop-shadow(0 0 12px rgba(0, 204, 204, 0.6));
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 150% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  padding: 20px 40px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.line {
  width: 1px;
  height: 60px;
  background: var(--text);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 40px;
}

.pricing-section {
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-section .container {
  max-width: 960px;
}

.pricing-section .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-section .benefits-grid {
  margin-top: 24px;
}

.pricing-section .benefit-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.pricing-section .benefit-card h3 {
  font-size: 22px;
}

.pricing-section .benefit-card p {
  font-size: 14px;
}

/* About */
.about-grid {
  display: grid;
  /* Give more space to the logo column (Text: 40%, Logo: 60%) */
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center; /* Center vertically */
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 300;
}

.about-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo-fill-container {
  width: 100%;
  max-width: 800px; /* Increased size significantly */
  position: relative;
  /* Remove mask properties */
}

.logo-bg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.1; /* Faint grey for empty state */
  filter: grayscale(100%);
}

.logo-fill-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%; /* Animated height */
  overflow: hidden;
  
  /* Double Wave Mask for Fluidity */
  /* We use two wave layers moving at different speeds to create interference/turbulence */
  /* Q command creates a smooth Quadratic Bezier sine wave */
  --wave-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q25,20 50,10 T100,10 V20 H0 Z' fill='black'/%3E%3C/svg%3E");
  
  -webkit-mask-image: 
    var(--wave-svg), 
    var(--wave-svg), 
    linear-gradient(black, black);
  mask-image: 
    var(--wave-svg), 
    var(--wave-svg), 
    linear-gradient(black, black);
  
  /* Sizes: Wave 1 (Wide/Slow), Wave 2 (Narrow/Fast), Body */
  -webkit-mask-size: 
    200% 30px, 
    150% 20px, 
    100% calc(100% - 20px);
  mask-size: 
    200% 30px, 
    150% 20px, 
    100% calc(100% - 20px);
  
  -webkit-mask-position: 
    0 top, 
    0 top, 
    bottom;
  mask-position: 
    0 top, 
    0 top, 
    bottom;
  
  -webkit-mask-repeat: 
    repeat-x, 
    repeat-x, 
    no-repeat;
  mask-repeat: 
    repeat-x, 
    repeat-x, 
    no-repeat;
  
  animation: waveFlow 2s linear infinite;
  will-change: mask-position;
}

@keyframes waveFlow {
  0% {
    -webkit-mask-position: 0 top, 0 top, bottom;
    mask-position: 0 top, 0 top, bottom;
  }
  100% {
    /* Layer 1: -200% (1 cycle of 200%) in 2s -> Fast Rushing */
    /* Layer 2: 300% (2 cycles of 150%) in 2s -> Very Fast Turbulence */
    -webkit-mask-position: -200% top, 300% top, bottom;
    mask-position: -200% top, 300% top, bottom;
  }
}

.logo-fg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* Ensure this image matches the dimensions of .logo-bg exactly */
  /* Since they are the same image and width 100%, they should match */
  filter: drop-shadow(0 0 10px rgba(0, 204, 204, 0.6)); /* Glow for filled state */
}

/* Remove old water-level class if not used */
.water-level {
  display: none;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.03);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.2);
}

.benefit-card h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text);
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

@media (max-width: 900px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

.cap-item {
  position: relative;
  padding-right: 20px;
}

.cap-number {
  display: block;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: monospace;
}

.cap-item h4 {
  font-size: 24px;
  margin: 0 0 15px;
  font-weight: 400;
}

.cap-item p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Work List */
.work-list {
  display: flex;
  flex-direction: column;
}

.work-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--text);
  transition: padding 0.3s ease;
}

.work-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.work-item:hover {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.02);
}

.work-info h3 {
  font-size: 40px;
  margin: 0;
  font-weight: 400;
}

.work-info p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-arrow {
  font-size: 32px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.work-item:hover .work-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-column h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--text);
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.9;
  filter: invert(1);
}

.footer-desc {
  color: var(--muted);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .footer-desc {
    margin: 0 auto;
  }
}

.footer-column p, .footer-column a {
  color: var(--muted);
  text-decoration: none;
  line-height: 2;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 20px;
}

@media (max-width: 600px) {
  .socials {
    justify-content: center;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--text);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-2);
  margin: 5% auto;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  color: var(--muted);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--accent);
  text-decoration: none;
}

.modal-title {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.modal-body {
  color: var(--muted);
  line-height: 1.8;
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 20px;
}

.modal-body h3 {
  color: var(--text);
  margin-top: 30px;
  font-size: 18px;
}

.modal-body ul {
  padding-left: 20px;
}

.modal-body a {
  color: var(--accent);
  text-decoration: none;
}

/* Scrollbar for modal body */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Reveal Animation Class */
.reveal {
  opacity: 0;
  transform: translateX(-50px); /* Changed from translateY(30px) to slide in from Left */
  transition: all 1s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateX(0);
}

/* Form Styles for Project Modal */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.8);
}

/* Range Slider */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 0 10px rgba(0, 204, 204, 0.4);
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.range-value {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: bold;
  text-align: right;
}

/* Slide Checks (Toggle Switch) */
.toggle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--accent);
}

input:checked + .slider:before {
  transform: translateX(16px);
}

.toast-root {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

@media (max-width: 600px) {
  .toast-root {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }
}

.toast {
  pointer-events: auto;
  background: rgba(224, 224, 224, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left-width: 4px;
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  min-width: min(420px, 100%);
  max-width: 520px;
  animation: toastIn 220ms cubic-bezier(.2,.8,.2,1);
}

.toast--success {
  border-left-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 204, 204, 0.2);
}

.toast--error {
  border-left-color: var(--primary);
  box-shadow: 0 0 30px rgba(204, 0, 204, 0.18);
}

.toast__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.toast__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.9;
}

.toast__message {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.toast__close {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toast__close:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.25);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
