@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg-primary: #030303;
  --bg-secondary: #0a0a0a;
  --bg-surface: #121212;
  --text-primary: #f8f8f8;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --neon-cyan: #00e5ff;
  --neon-cyan-hover: #00c4dd;
  --neon-purple: #7000ff;
  --neon-green: #39ff14;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(0, 229, 255, 0.4);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: clip;
  scroll-behavior: smooth;
  max-width: 100vw;
}

body {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 229, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(112, 0, 255, 0.08), transparent 60%),
    var(--bg-primary);
  min-height: 100vh;
}

::selection {
  background: rgba(0, 229, 255, 0.3);
  color: #fff;
}

.font-display {
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.font-mono {
  font-family: "JetBrains Mono", monospace;
}

.neon-text {
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.6), 0 0 40px rgba(0, 229, 255, 0.3);
}

.neon-border {
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.4), 0 0 30px rgba(0, 229, 255, 0.15), inset 0 0 30px rgba(0, 229, 255, 0.05);
}

.glass {
  /*   background: rgba(18, 18, 18, 0.6);
 */
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#nav-lang-menu {
  background: rgba(8, 8, 8, 0.95) !important;
}

.gradient-text {
  background: linear-gradient(120deg, #00e5ff 0%, #7000ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-soft {
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 229, 255, 0.3);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 30%, black, transparent 75%);
}

@keyframes wave-bounce {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

.wave-bar {
  animation: wave-bounce 0.9s ease-in-out infinite;
  transform-origin: center;
}

@keyframes marquee-x {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track {
  animation: marquee-x 40s linear infinite;
}

.hero-preview-retired {
  display: none !important;
}

.brand-marquee-shell {
  position: relative;
  width: min(100% - 24px, 1440px);
  margin: 5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(255, 255, 255, .055), rgba(112, 0, 255, .035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee-ltr 46s linear infinite;
  padding: 22px 0;
  will-change: transform;
}

.brand-marquee-shell:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
  padding-right: clamp(36px, 5vw, 78px);
}

.brand-logo-item {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: #8d9099;
  opacity: .72;
  filter: grayscale(1);
  transition: opacity .25s ease, color .25s ease, filter .25s ease, transform .25s ease;
}

.brand-logo-item:hover {
  color: #fff;
  opacity: 1;
  filter: grayscale(1) drop-shadow(0 0 14px rgba(0, 229, 255, .55));
  transform: translateY(-2px);
}

.brand-logo-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(.65);
  transition: filter .25s ease;
}

.brand-logo-item:hover img {
  filter: grayscale(1) brightness(0) invert(1);
}

.brand-logo-item span {
  font: 650 clamp(13px, 1.15vw, 16px)/1.1 var(--font-display, sans-serif);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand-marquee-fade {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(44px, 8vw, 130px);
  pointer-events: none;
}

.brand-marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, #050507 10%, transparent);
}

.brand-marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, #050507 10%, transparent);
}

@keyframes brand-marquee-ltr {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .brand-marquee-shell {
    margin-top: 3.5rem;
    border-radius: 18px;
  }

  .brand-marquee-track {
    padding: 17px 0;
    animation-duration: 34s;
  }

  .brand-marquee-group {
    gap: 34px;
    padding-right: 34px;
  }

  .brand-logo-item img {
    width: 23px;
    height: 23px;
  }

  .brand-logo-item span {
    font-size: 12px;
  }
}

/* Visual-first product showcase */
.product-showcase-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-hero-stage {
  position: relative;
  width: min(calc(100% - 32px), 1180px);
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  min-width: 0;
}

@media (min-width: 641px) {
  #top [data-testid="hero-title"] > div {
    font-size: clamp(3.25rem, 5.7vw, 5rem) !important;
  }
}

.product-hero-glow {
  position: absolute;
  inset: 6% 10% -8%;
  border-radius: 50%;
  background: linear-gradient(105deg, rgba(0, 229, 255, .22), rgba(112, 0, 255, .25));
  filter: blur(70px);
  opacity: .75;
}

.product-hero-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 220, 255, .28);
  border-radius: clamp(18px, 2.4vw, 30px);
  background: #050914;
  box-shadow:
    0 34px 110px -42px rgba(0, 229, 255, .65),
    0 28px 90px -48px rgba(112, 0, 255, .9),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.product-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 25%, transparent 72%, rgba(112, 0, 255, .08));
}

.product-showcase-image-hero {
  aspect-ratio: 5 / 2;
}

.product-hero-caption {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1rem auto 0;
}

.product-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .9rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  background: rgba(10, 14, 25, .82);
  color: #c9cbd2;
  font: 700 .72rem/1.1 "JetBrains Mono", monospace;
  letter-spacing: .04em;
  backdrop-filter: blur(18px);
}

.product-proof-dot {
  width: .48rem;
  height: .48rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #00e5ff;
  box-shadow: 0 0 14px rgba(0, 229, 255, .85);
}

.product-proof-dot.is-purple {
  background: #9b5fff;
  box-shadow: 0 0 14px rgba(155, 95, 255, .85);
}

.product-proof-dot.is-green {
  background: #39ff14;
  box-shadow: 0 0 14px rgba(57, 255, 20, .65);
}

.visual-proof-card,
.dashboard-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.1rem, 2.4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: clamp(22px, 3vw, 36px);
  background:
    radial-gradient(circle at 92% 15%, rgba(0, 229, 255, .12), transparent 32%),
    linear-gradient(135deg, rgba(13, 19, 33, .92), rgba(3, 5, 11, .96));
  box-shadow: 0 35px 100px -55px rgba(0, 229, 255, .75);
}

.visual-proof-card-reverse {
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .72fr);
}

.visual-proof-card-reverse .visual-proof-copy {
  order: 2;
}

.visual-proof-card-reverse .visual-proof-media {
  order: 1;
}

.visual-proof-copy,
.dashboard-showcase-copy {
  min-width: 0;
  padding: clamp(.5rem, 1.8vw, 1.3rem);
}

.visual-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: #00e5ff;
  font: 800 .7rem/1 "JetBrains Mono", monospace;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.visual-proof-kicker::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: linear-gradient(90deg, #00e5ff, transparent);
}

.visual-proof-copy h3,
.dashboard-showcase-copy h3 {
  margin: 0;
  color: #fff;
  font: 800 clamp(1.65rem, 3vw, 2.8rem)/1.07 "Manrope", "Inter", sans-serif;
  letter-spacing: -.045em;
}

.visual-proof-copy p,
.dashboard-showcase-copy p {
  margin: 1.15rem 0 0;
  color: #a8aab4;
  font-size: clamp(.92rem, 1.35vw, 1.06rem);
  line-height: 1.75;
}

.visual-proof-media,
.dashboard-showcase-media,
.live-showcase-media {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: clamp(16px, 2vw, 26px);
  background: #030713;
  box-shadow: 0 22px 75px -38px rgba(0, 229, 255, .8);
}

.visual-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.35rem;
}

.visual-proof-tags span {
  padding: .45rem .65rem;
  border: 1px solid rgba(0, 229, 255, .18);
  border-radius: .55rem;
  background: rgba(0, 229, 255, .055);
  color: #9deffa;
  font: 700 .66rem/1 "JetBrains Mono", monospace;
}

.visual-proof-status {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.35rem;
  color: #64ff70;
  font-size: .82rem;
  font-weight: 700;
}

.visual-proof-status > span:first-child {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 1px solid rgba(57, 255, 20, .28);
  border-radius: 999px;
  background: rgba(57, 255, 20, .07);
}

.dashboard-showcase {
  grid-template-columns: minmax(250px, .58fr) minmax(0, 1.7fr);
}

.dashboard-proof-list {
  display: grid;
  gap: .6rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-proof-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #d7d8dd;
  font-size: .82rem;
}

.dashboard-proof-list li > span:first-child {
  color: #00e5ff;
  font: 800 .65rem/1 "JetBrains Mono", monospace;
}

.dashboard-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.55rem;
  padding: .85rem 1.1rem;
  border: 1px solid rgba(0, 229, 255, .3);
  border-radius: 999px;
  background: linear-gradient(110deg, #00e5ff, #7c4dff);
  box-shadow: 0 16px 45px -20px rgba(0, 229, 255, .9);
  color: #020305;
  font-size: .82rem;
  font-weight: 900;
  transition: transform .25s ease, filter .25s ease;
}

.dashboard-showcase-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.dashboard-preview-retired {
  display: none !important;
}

.live-showcase-media {
  position: relative;
}

.live-showcase-media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: .7rem .9rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(3, 7, 16, .84);
  color: #dce1ea;
  font-size: .72rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.live-points-compact {
  margin-top: 1rem;
  border-radius: 1.25rem;
  padding: .75rem;
  background: rgba(5, 7, 11, .72);
  box-shadow: none;
}

.live-points-compact .relative.grid {
  gap: .65rem;
}

.live-points-compact .relative.grid > div {
  padding: .85rem;
  border-radius: .9rem;
}

.live-points-compact .relative.grid > div > div:first-child {
  display: none;
}

.live-points-compact h3 {
  font-size: .82rem;
}

.live-points-compact p {
  margin-top: .45rem;
  font-size: .7rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .visual-proof-card,
  .visual-proof-card-reverse,
  .dashboard-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .visual-proof-card-reverse .visual-proof-copy,
  .visual-proof-card-reverse .visual-proof-media {
    order: initial;
  }

  .visual-proof-card-reverse .visual-proof-copy {
    order: 1;
  }

  .visual-proof-card-reverse .visual-proof-media {
    order: 2;
  }
}

@media (max-width: 640px) {
  .product-hero-stage {
    width: calc(100% - 24px);
    margin-right: auto;
    margin-left: auto;
  }

  .product-hero-frame {
    border-radius: 15px;
  }

  .product-hero-caption {
    gap: .4rem;
  }

  .product-proof-pill {
    padding: .48rem .62rem;
    font-size: .59rem;
  }

  .visual-proof-card,
  .dashboard-showcase {
    padding: .75rem;
    border-radius: 20px;
  }

  .visual-proof-copy,
  .dashboard-showcase-copy {
    padding: .7rem .45rem 1rem;
  }

  .visual-proof-media,
  .dashboard-showcase-media,
  .live-showcase-media {
    border-radius: 13px;
  }

  .live-showcase-media figcaption {
    position: static;
    width: auto;
    max-width: none;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    background: rgba(3, 7, 16, .96);
    font-size: .65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero-stage,
  .visual-proof-card,
  .dashboard-showcase,
  .live-showcase-media {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 1024px) and (max-height: 1050px) {
  #top[data-testid="hero"] {
    padding-top: 7rem;
    padding-bottom: 1.5rem;
  }

  #top .brand-marquee-shell {
    margin-top: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation-play-state: paused;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin-slow {
  animation: spin-slow 20s linear infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes beam-trace {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% 200%;
  }
}

.tracing-beam {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.05) 10%, rgba(0, 229, 255, 0.8) 50%, rgba(0, 229, 255, 0.05) 90%, transparent 100%);
  background-size: 100% 50%;
  animation: beam-trace 4s ease-in-out infinite;
}

.glow-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glow-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 255, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.glow-btn:hover::before {
  opacity: 1;
}

.container-x {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container-x {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.lift {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, background 0.3s;
}

.lift:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.4);
}

.logo-mark {
  transition: transform 0.45s cubic-bezier(.2, .8, .2, 1);
}

.group:hover .logo-mark {
  transform: rotate(-8deg) scale(1.06);
}

#navbar {
  animation: nav-in .6s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes nav-in {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.motion-up {
  opacity: 0;
  transform: translateY(30px);
  animation: motion-up .8s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes motion-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-orb-a {
  animation: hero-orb-a 20s ease-in-out infinite;
}

.hero-orb-b {
  animation: hero-orb-b 25s ease-in-out infinite;
}

@keyframes hero-orb-a {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(30px, -20px);
  }

  66% {
    transform: translate(-20px, 30px);
  }
}

@keyframes hero-orb-b {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-40px, 30px);
  }

  66% {
    transform: translate(20px, -10px);
  }
}

.hero-progress {
  width: 0;
  animation: hero-progress 2s 1.5s ease forwards;
}

@keyframes hero-progress {
  to {
    width: 35%;
  }
}

.dashboard-quota-fill {
  width: 0;
  animation: dashboard-quota-fill 1.2s .3s ease forwards;
}

@keyframes dashboard-quota-fill {
  to {
    width: 80%;
  }
}

.dashboard-chart-line {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: dashboard-chart-draw 1.6s .35s ease forwards;
}

@keyframes dashboard-chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.reveal-card,
.section-head {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal-card.in-view,
.section-head.in-view {
  opacity: 1;
  transform: translateY(0);
}

.viz-wave {
  animation: wave-bounce 2s ease-in-out infinite;
  transform-origin: center;
}

.viz-wave-2 {
  transform: translateY(4px);
  animation-duration: 2.4s;
}

.viz-wave-3 {
  transform: translateY(8px);
  animation-duration: 2.8s;
}

.demo-play-disc {
  transition: transform .25s ease;
}

#demo-play-btn:hover .demo-play-disc {
  transform: scale(1.08);
}

#demo-play-btn:active .demo-play-disc {
  transform: scale(.92);
}

.translate-bar {
  animation: translate-fill 1.4s linear forwards;
}

@keyframes translate-fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.select-box.open .select-menu {
  display: block;
  animation: select-open .18s ease both;
}

.select-box.open .select-toggle svg {
  transform: rotate(180deg);
}

@keyframes select-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voice-card.active {
  border-color: rgba(0, 229, 255, .5);
  background: rgba(0, 229, 255, .05);
  box-shadow: 0 0 40px -10px rgba(0, 229, 255, .4);
}

.cta-orb-a {
  animation: cta-orb-a 12s ease-in-out infinite;
}

.cta-orb-b {
  animation: cta-orb-b 15s ease-in-out infinite;
}

@keyframes cta-orb-a {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -20px);
  }
}

@keyframes cta-orb-b {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 20px);
  }
}

.landing-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  max-width: min(24rem, calc(100vw - 2.5rem));
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: rgba(10, 10, 12, 0.94);
  box-shadow: 0 18px 60px -20px rgba(0, 229, 255, 0.45);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.45;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: toast-in 0.25s ease both;
}

.landing-toast.is-error {
  border-color: rgba(255, 68, 51, 0.45);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .container-x {
    max-width: 100vw;
    box-sizing: border-box;
  }

  [data-testid="hero-title"] {
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  [data-testid="hero-title"]>div {
    font-size: 2rem !important;
    line-height: 1.04 !important;
    letter-spacing: -0.02em;
    white-space: normal;
  }

  [data-testid="hero-badge"] {
    max-width: calc(100vw - 36px);
    overflow: hidden;
  }

  [data-testid="hero-badge"]>span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
