/* —— Design tokens: energy + tech —— */
:root {
  --bg-deep: #050810;
  --bg-panel: #0c1220;
  --bg-elevated: #111a2e;
  --border: rgba(94, 234, 212, 0.12);
  --text: #e8edf7;
  --text-muted: #8b98b3;
  --accent-cyan: #2ee6d6;
  --accent-green: #3dff9c;
  --accent-amber: #ffc14d;
  --glow-cyan: rgba(46, 230, 214, 0.35);
  --glow-green: rgba(61, 255, 156, 0.25);
  --font-sans: "Noto Sans SC", "DM Sans", system-ui, sans-serif;
  --radius: 14px;
  --header-h: 72px;
  --maxw: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--accent-green);
}

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

.container {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 8, 16, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  box-shadow: 0 0 24px var(--glow-cyan);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  background: var(--bg-deep);
  opacity: 0.85;
}

.logo-mark.small {
  width: 28px;
  height: 28px;
}

.logo-sub {
  font-weight: 500;
  color: var(--accent-cyan);
  margin-left: 2px;
}

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

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46, 230, 214, 0.2), rgba(61, 255, 156, 0.15));
  border: 1px solid var(--border);
  color: var(--accent-cyan) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 20px var(--glow-cyan);
  color: var(--accent-green) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-panel);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: rgba(5, 8, 16, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--bg-elevated);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(46, 230, 214, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(61, 255, 156, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(255, 193, 77, 0.06), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, #0a1020 100%);
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 230, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 230, 214, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 16px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-sep {
  color: var(--accent-cyan);
  font-weight: 400;
  margin: 0 0.2em;
  opacity: 0.65;
  text-shadow: 0 0 20px var(--glow-cyan);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 32px;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), #1bc4b8);
  color: #041018;
  box-shadow: 0 8px 32px var(--glow-cyan);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px var(--glow-cyan);
  color: #041018;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--accent-cyan);
  border: 1px solid var(--border);
  padding: 12px 22px;
}

.btn-secondary:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 24px;
  background: rgba(12, 18, 32, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero-metrics dt {
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.hero-metrics dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  width: 20px;
  height: 32px;
  border: 2px solid var(--border);
  border-radius: 10px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--accent-cyan);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(8px);
  }
}

@media (max-width: 640px) {
  .hero-scroll-hint {
    display: none;
  }
}

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-head-light h2 {
  color: var(--text);
}

.section-head-light p {
  color: rgba(232, 237, 247, 0.75);
}

.solutions {
  background: linear-gradient(180deg, #0a1020 0%, var(--bg-deep) 100%);
}

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

@media (max-width: 900px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(46, 230, 214, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px var(--glow-cyan));
}

.card-energy .card-icon {
  color: var(--accent-amber);
}

.card-ai .card-icon {
  color: var(--accent-cyan);
}

.card-saas .card-icon {
  color: var(--accent-green);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags li {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.products {
  border-top: 1px solid var(--border);
}

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

@media (max-width: 860px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }
}

.product-visual {
  display: flex;
  justify-content: center;
  min-height: 280px;
}

.orbit {
  position: relative;
  width: 220px;
  height: 220px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent-cyan);
  border-right-color: rgba(61, 255, 156, 0.4);
  animation: spin 12s linear infinite;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(46, 230, 214, 0.25);
  animation: spin 18s linear infinite reverse;
}

.orbit-core {
  position: absolute;
  inset: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-green), #0d6b52 40%, var(--bg-elevated));
  box-shadow:
    0 0 60px var(--glow-green),
    inset 0 0 40px rgba(0, 0, 0, 0.5);
}

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

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

.product-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-list li:first-child {
  padding-top: 0;
}

.product-list strong {
  font-size: 1.05rem;
  color: var(--text);
}

.product-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about {
  background: var(--bg-panel);
  border-block: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-copy h2 {
  margin-top: 0;
}

.about-copy p {
  color: var(--text-muted);
}

.about-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-stat {
  padding: 20px 22px;
  background: var(--bg-deep);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.stat-suffix {
  font-size: 1rem;
  color: var(--accent-green);
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.contact {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(46, 230, 214, 0.12), transparent),
    var(--bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card,
.qr-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid var(--border);
}

.contact-card h3,
.qr-card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.contact-label {
  min-width: 88px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.copy-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent-cyan);
  cursor: pointer;
  text-align: left;
  border-bottom: 1px dashed transparent;
}

.copy-btn:hover {
  border-bottom-color: var(--accent-cyan);
}

.social-block .contact-label {
  display: block;
  margin-bottom: 8px;
}

.social-lines {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.qr-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 16px;
}

.qr-wrap {
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.qr-wrap img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.qr-wechat {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.qr-benefits {
  margin: 20px 0 0;
  padding-left: 1.2em;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.qr-benefits li {
  margin-bottom: 6px;
}

/* Footer */
.site-footer {
  background: #030508;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0;
}

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

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-links h4 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-links span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-legal {
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
}

.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-inner a {
  color: var(--text-muted);
}

.footer-legal-inner a:hover {
  color: var(--accent-cyan);
}

.footer-legal-inner .copy {
  flex: 1 1 200px;
}

.icp {
  white-space: nowrap;
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #080e18 50%, var(--bg-deep) 100%);
  border-block: 1px solid var(--border);
}

.pricing-container {
  max-width: 1240px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  border-color: rgba(46, 230, 214, 0.28);
}

.pricing-card--featured {
  border-color: rgba(46, 230, 214, 0.45);
  box-shadow:
    0 0 0 1px rgba(46, 230, 214, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45);
  background: linear-gradient(165deg, rgba(17, 26, 46, 0.95) 0%, var(--bg-panel) 40%);
}

@media (min-width: 1101px) {
  .pricing-card--featured {
    transform: translateY(-6px);
  }
}

.pricing-card-head {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.pricing-badge--trial {
  background: rgba(255, 193, 77, 0.15);
  color: var(--accent-amber);
  border: 1px solid rgba(255, 193, 77, 0.35);
}

.pricing-badge--hot {
  background: rgba(46, 230, 214, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(46, 230, 214, 0.4);
}

.pricing-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.pricing-card-head:has(.pricing-badge) .pricing-title-row {
  padding-right: 76px;
}

.pricing-emoji {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(46, 230, 214, 0.25));
}

.pricing-card-head h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.pricing-tagline {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.pricing-amount {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: -0.02em;
}

.pricing-amount--lg {
  font-size: 1.35rem;
}

.pricing-unit {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-note {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-quotas {
  display: flex;
  flex-direction: column;
  margin: 0 0 18px;
  padding: 2px 14px 4px;
  background: var(--bg-deep);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.pricing-quota-row {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  column-gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(94, 234, 212, 0.08);
}

.pricing-quota-row:last-child {
  border-bottom: none;
}

.pricing-quotas dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.pricing-quotas dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  font-variant-numeric: tabular-nums;
  justify-self: stretch;
  min-width: 0;
}

.pricing-feats {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1 1 auto;
  font-size: 0.82rem;
}

.pricing-feats li {
  position: relative;
  padding: 6px 0 6px 1.35em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(94, 234, 212, 0.06);
}

.pricing-feats li:last-child {
  border-bottom: none;
}

.pricing-feats li.on {
  color: var(--text);
}

.pricing-feats li.on::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  box-shadow: 0 0 8px var(--glow-green);
}

.pricing-feats li.off {
  opacity: 0.42;
}

.pricing-feats li.off::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  margin-top: -0.5px;
  width: 8px;
  height: 1px;
  background: var(--text-muted);
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  padding: 12px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

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