/* GhostFlow 2026 refinement
   A restrained product-led layer over the legacy visual system. */

:root {
  --gf-bg: #07080b;
  --gf-bg-deep: #040507;
  --gf-surface: #101218;
  --gf-surface-high: #151820;
  --gf-text: #f5f7fb;
  --gf-muted: #adb3bf;
  --gf-dim: #777f8c;
  --gf-line: rgba(255, 255, 255, 0.1);
  --gf-line-soft: rgba(255, 255, 255, 0.06);
  --gf-blue: #8eb4ff;
  --gf-mint: #79efc2;
  --gf-amber: #ffc56f;
  --gf-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gf-container: min(1180px, calc(100vw - 48px));
}

html {
  background: var(--gf-bg-deep);
}

body,
body.home-page,
body.veya-page,
body.nimbotrace-page {
  background: var(--gf-bg);
  color: var(--gf-text);
}

body.home-page {
  --page-accent: var(--gf-blue);
  --page-accent-2: var(--gf-mint);
}

body.veya-page {
  --page-accent: var(--gf-mint);
  --page-accent-2: var(--gf-blue);
}

body.nimbotrace-page {
  --page-accent: var(--gf-amber);
  --page-accent-2: var(--gf-blue);
}

h1,
h2,
h3,
p,
a,
button,
li {
  letter-spacing: 0;
}

/* Navigation */

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(7, 8, 11, 0.66);
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
}

.nav,
.veya-page .nav {
  width: var(--gf-container);
  min-height: 56px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  min-height: 56px;
  gap: 10px;
  color: rgba(245, 247, 251, 0.94);
  font-size: 0.88rem;
  font-weight: 650;
}

.brand-logo {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  opacity: 0.96;
}

.nav-links {
  gap: 22px;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  padding: 0;
  color: rgba(245, 247, 251, 0.66);
  font-size: 0.82rem;
  font-weight: 560;
  transition: color 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 220ms ease,
    transform 220ms var(--gf-ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current,
.nav-links a.nav-beta:hover,
.nav-links a.nav-beta:focus-visible,
.nav-links a.nav-weather:hover,
.nav-links a.nav-weather:focus-visible {
  color: var(--gf-text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-current::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.language-switcher {
  min-height: 32px;
  margin-left: 18px;
  padding: 2px;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
}

.language-option {
  min-width: 36px;
  min-height: 28px;
  padding: 0 9px;
  color: rgba(245, 247, 251, 0.58);
  font-size: 0.72rem;
}

.language-option.is-active {
  background: var(--gf-text);
  color: var(--gf-bg-deep);
}

.menu-toggle {
  width: 44px !important;
  height: 44px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--gf-text) !important;
}

/* Home hero */

.hero {
  min-height: max(680px, 100svh);
  padding: 126px 24px 82px;
  background:
    linear-gradient(118deg, #080a0f 0%, #07090d 52%, #0a0d14 100%),
    var(--gf-bg);
}

.hero::before {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.06) 0%, rgba(7, 8, 11, 0.24) 55%, rgba(7, 8, 11, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 8, 11, 0.02), rgba(7, 8, 11, 0.2) 72%, var(--gf-bg) 100%);
}

.hero-content {
  width: var(--gf-container);
  padding-top: 0;
}

.hero-content .eyebrow {
  margin-bottom: 20px;
  color: rgba(245, 247, 251, 0.62);
}

.hero h1 {
  width: min(840px, 76vw);
  margin-bottom: 24px;
  color: var(--gf-text);
  font-size: clamp(4.2rem, 7.9vw, 7.4rem);
  font-weight: 720;
  line-height: 0.94;
  text-wrap: balance;
}

html[lang="zh-Hans"] .hero h1 {
  width: min(820px, 72vw);
  font-size: clamp(4rem, 7.4vw, 6.8rem);
  line-height: 0.98;
}

.slogan {
  margin-bottom: 24px;
  color: rgba(245, 247, 251, 0.86);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 620;
}

.hero-trust {
  width: auto;
  gap: 0;
  margin-bottom: 30px;
}

.hero-trust li,
.product-trust li,
.coming-proof-list li,
.veya-page .coming-proof-list li {
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(245, 247, 251, 0.58);
  font-size: 0.76rem;
  font-weight: 520;
}

.hero-trust li + li::before,
.product-trust li + li::before,
.coming-proof-list li + li::before,
.veya-page .coming-proof-list li + li::before {
  content: "";
  width: 3px;
  height: 3px;
  margin: 0 11px;
  border-radius: 50%;
  background: rgba(245, 247, 251, 0.35);
}

.hero-actions {
  align-items: center;
  gap: 10px 22px;
}

.hero-actions .button-primary {
  min-height: 48px;
  padding-inline: 22px;
}

.hero-actions .button-secondary {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 247, 251, 0.68);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 0.9rem;
  font-weight: 560;
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  background: transparent;
  color: var(--gf-text);
  transform: none;
}

.hero-ambient {
  right: max(2vw, calc((100vw - 1280px) / 2));
  left: auto;
  width: min(42vw, 590px);
  overflow: hidden;
  opacity: 0.96;
  mask-image: linear-gradient(180deg, transparent 5%, #000 24%, #000 76%, transparent 95%);
}

.hero-ambient::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background-image: radial-gradient(circle, rgba(142, 180, 255, 0.26) 1px, transparent 1.3px);
  background-size: 28px 28px;
  opacity: 0.24;
  animation: signalFieldDrift 16s var(--gf-ease) infinite alternate;
}

.hero-thread {
  display: block !important;
  top: 20% !important;
  bottom: auto !important;
  width: 3px !important;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--page-accent), var(--page-accent-2), transparent);
  box-shadow: 0 0 22px rgba(142, 180, 255, 0.2);
  opacity: 0.72;
  transform: none;
  transform-origin: 50% 100%;
  animation: signalColumn 4.8s var(--gf-ease) infinite alternate;
}

.hero-thread-a {
  right: 13% !important;
  height: 52%;
}

.hero-thread-b {
  right: 29% !important;
  height: 36%;
  margin-top: 12%;
  animation-delay: -1.7s;
}

.hero-thread-c {
  right: 45% !important;
  height: 25%;
  margin-top: 24%;
  opacity: 0.46;
  animation-delay: -3.1s;
}

/* Home sections */

.section,
.intro-band,
#products,
.brand-banner-section,
.veya-note-section,
.nimbotrace-note-section,
.coming-detail-section,
.veya-page .veya-note-section,
.veya-page .coming-detail-section,
.site-footer {
  border-color: var(--gf-line-soft);
  background: var(--gf-bg);
}

.section-inner {
  width: var(--gf-container);
}

.intro-band {
  padding-top: clamp(86px, 10vw, 128px);
  padding-bottom: clamp(86px, 10vw, 128px);
  border-top: 0;
  border-bottom: 0;
  background: #0b0d12;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 10vw, 140px);
  align-items: center;
}

.intro-band .eyebrow,
#products .eyebrow {
  color: rgba(245, 247, 251, 0.48);
}

.intro-band h2 {
  max-width: 560px;
  color: var(--gf-text);
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.98;
}

.intro-copy {
  max-width: 590px;
  margin: 0;
  color: var(--gf-muted) !important;
  font-size: clamp(1.08rem, 1.75vw, 1.34rem);
  line-height: 1.66;
}

#products {
  padding-top: clamp(94px, 11vw, 142px);
  padding-bottom: clamp(104px, 12vw, 160px);
}

#products-title {
  max-width: 780px;
  margin-top: 10px;
  color: var(--gf-text);
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  font-weight: 680;
  line-height: 1.02;
}

html[lang="zh-Hans"] #products-title {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.15vw, 4.1rem);
  line-height: 1.08;
}

.product-grid {
  gap: 20px;
  margin-top: clamp(44px, 6vw, 72px);
}

.product-card,
.product-card-featured,
.product-card-weather {
  min-height: 610px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--gf-line-soft) !important;
  border-radius: 28px;
  background: var(--gf-surface) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.product-card-featured {
  background:
    linear-gradient(145deg, rgba(121, 239, 194, 0.1), transparent 40%),
    var(--gf-surface) !important;
}

.product-card-weather {
  background:
    linear-gradient(145deg, rgba(255, 197, 111, 0.11), transparent 40%),
    var(--gf-surface) !important;
}

@media (hover: hover) {
  .product-card:hover,
  .product-card-featured:hover,
  .product-card-weather:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.13) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 26px 70px rgba(0, 0, 0, 0.28) !important;
  }
}

.card-topline {
  margin-bottom: clamp(54px, 7vw, 92px);
}

.product-kicker {
  color: rgba(245, 247, 251, 0.52);
}

.product-card-featured .product-kicker {
  color: var(--gf-mint);
}

.product-card-weather .product-kicker {
  color: var(--gf-amber);
}

.availability,
.availability.available,
.availability.weather,
.product-card-weather .availability {
  min-height: 28px;
  padding-inline: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.75rem;
}

.product-card h3 {
  max-width: 100%;
  margin-bottom: 20px;
  color: var(--gf-text);
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  line-height: 0.95;
}

.product-card > p {
  max-width: 610px;
  color: var(--gf-muted) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.17rem);
  line-height: 1.62;
}

.product-trust {
  gap: 0;
  margin-top: 24px;
}

.signal-list {
  gap: 13px;
  margin-top: auto;
  padding-top: clamp(58px, 8vw, 92px);
}

.signal-list li {
  color: rgba(245, 247, 251, 0.74);
  font-size: 0.98rem;
  line-height: 1.48;
}

.signal-list li::before {
  width: 5px;
  height: 5px;
  margin-top: 0.62em;
  background: var(--gf-mint);
  box-shadow: none;
}

.product-card-weather .signal-list li::before {
  background: var(--gf-amber);
}

.card-actions {
  align-items: center;
  gap: 10px 18px;
  margin-top: 34px;
}

.card-actions .button-secondary {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(245, 247, 251, 0.68);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.card-actions .button-secondary:hover,
.card-actions .button-secondary:focus-visible {
  background: transparent;
  color: var(--gf-text);
  transform: none;
}

/* Product pages */

.coming-hero,
.veya-page .coming-hero,
.nimbotrace-hero {
  min-height: max(680px, calc(100svh - 56px));
  padding: clamp(126px, 17vh, 178px) 24px clamp(86px, 11vh, 124px);
  border-bottom: 0;
}

.veya-page .coming-hero {
  background:
    linear-gradient(132deg, rgba(121, 239, 194, 0.13), transparent 36%),
    linear-gradient(180deg, #0b1012, #07090c 72%);
}

.nimbotrace-hero {
  background:
    linear-gradient(132deg, rgba(255, 197, 111, 0.14), transparent 36%),
    linear-gradient(180deg, #11100d, #08090b 72%);
}

.coming-grid,
.veya-page .coming-grid {
  width: min(980px, calc(100vw - 48px));
}

.coming-copy,
.veya-page .coming-copy {
  gap: 20px;
}

.coming-copy .eyebrow,
.veya-page .coming-copy .eyebrow {
  margin: 0;
  color: var(--page-accent);
}

.coming-copy h1,
.veya-page .coming-copy h1 {
  margin: 0;
  color: var(--gf-text);
  font-size: clamp(5.2rem, 12vw, 9.8rem);
  font-weight: 720;
  line-height: 0.9;
}

.coming-copy-main,
.veya-page .coming-copy-main {
  width: min(740px, 100%);
  color: var(--gf-muted) !important;
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  line-height: 1.55;
}

.coming-proof-list,
.veya-page .coming-proof-list {
  gap: 0;
  margin-top: 2px;
}

.coming-actions {
  align-items: center;
  gap: 10px 20px;
  margin-top: 14px;
}

.coming-actions .button-primary,
.veya-page .coming-actions .button-primary {
  border-color: var(--page-accent);
  background: var(--page-accent);
  color: #07100c;
}

.nimbotrace-page .coming-actions .button-primary {
  color: #151006;
}

.coming-actions .button-secondary,
.veya-page .coming-actions .button-secondary {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(245, 247, 251, 0.7);
  box-shadow: none;
}

.coming-actions .button-secondary:hover,
.coming-actions .button-secondary:focus-visible,
.veya-page .coming-actions .button-secondary:hover,
.veya-page .coming-actions .button-secondary:focus-visible {
  background: transparent;
  color: var(--gf-text);
  transform: none;
}

.veya-note-section,
.nimbotrace-note-section,
.veya-page .veya-note-section {
  padding-top: clamp(92px, 11vw, 146px);
  padding-bottom: clamp(92px, 11vw, 146px);
  background: #0b0d12;
  color: var(--gf-text);
}

.veya-page .coming-detail-section,
.coming-detail-section {
  padding-top: clamp(90px, 10vw, 136px);
  padding-bottom: clamp(110px, 12vw, 160px);
  background: var(--gf-bg);
  color: var(--gf-text);
}

.veya-note,
.veya-page .veya-note {
  width: min(1020px, 100%);
  padding: clamp(44px, 7vw, 78px);
  border: 1px solid var(--gf-line-soft) !important;
  border-radius: 28px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--page-accent) 8%, transparent), transparent 45%),
    var(--gf-surface) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  text-align: left;
}

.veya-note .eyebrow,
.veya-page .veya-note .eyebrow {
  color: var(--page-accent);
}

.veya-note h2,
.veya-page .veya-note h2 {
  max-width: 820px;
  color: var(--gf-text);
  font-size: clamp(2.8rem, 5.6vw, 5.7rem);
  line-height: 0.98;
}

.veya-note-copy,
.veya-page .veya-note-copy {
  max-width: 780px;
  color: var(--gf-muted) !important;
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
  line-height: 1.68;
}

.veya-note-copy p:nth-child(3),
.veya-page .veya-note-copy p:nth-child(3) {
  color: var(--gf-text) !important;
  font-weight: 560 !important;
}

.coming-detail-section .section-heading h2,
.veya-page .coming-detail-section .section-heading h2 {
  max-width: 850px;
  color: var(--gf-text);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.coming-card-grid,
.veya-page .coming-card-grid {
  gap: 14px;
  margin-top: clamp(46px, 6vw, 72px);
}

.coming-card,
.veya-page .coming-card {
  min-height: 224px;
  padding: 28px;
  border: 1px solid var(--gf-line-soft) !important;
  border-radius: 22px;
  background: var(--gf-surface) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

.coming-card span,
.veya-page .coming-card span {
  color: var(--page-accent) !important;
  font-size: 0.78rem;
  font-weight: 620;
}

.coming-card h3,
.veya-page .coming-card h3 {
  margin: 54px 0 12px;
  color: var(--gf-text);
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
}

.coming-card p,
.veya-page .coming-card p {
  color: var(--gf-muted) !important;
  font-size: 0.98rem;
  line-height: 1.58;
}

/* Team and legal pages */

.legal-main {
  padding: 144px 24px 104px;
  background:
    linear-gradient(145deg, rgba(142, 180, 255, 0.07), transparent 30%),
    var(--gf-bg);
}

.legal-shell,
.team-shell {
  width: min(1040px, 100%);
}

.legal-header {
  max-width: 820px;
  margin-bottom: clamp(58px, 8vw, 92px);
}

.legal-header .eyebrow {
  color: var(--gf-blue);
}

.legal-header h1 {
  margin-bottom: 18px;
  color: var(--gf-text);
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  line-height: 0.92;
}

.legal-updated,
.team-intro {
  color: var(--gf-muted) !important;
}

.legal-content {
  gap: 0;
}

.legal-content section {
  padding: clamp(38px, 5vw, 58px) 0;
  border: 0 !important;
  border-top: 1px solid var(--gf-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.legal-content h2 {
  max-width: 680px;
  color: var(--gf-text);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.legal-content p,
.legal-content li {
  max-width: 780px;
  color: var(--gf-muted) !important;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--gf-blue);
}

.team-grid {
  gap: 18px;
}

.team-card {
  min-height: 520px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--gf-line-soft) !important;
  border-radius: 26px;
  background: var(--gf-surface) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

.team-photo-frame {
  width: min(100%, 220px);
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.team-card h2 {
  color: var(--gf-text);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.team-role {
  color: var(--gf-muted);
}

.team-link {
  border-color: var(--gf-line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--gf-text);
}

/* Footer */

.site-footer {
  padding: 58px 24px 40px;
  border-top: 1px solid var(--gf-line-soft);
  background: var(--gf-bg-deep);
}

.footer-inner {
  width: var(--gf-container);
  gap: 30px;
}

.footer-slogan {
  color: var(--gf-text) !important;
}

.footer-legal-note,
.footer-bottom p {
  color: var(--gf-dim) !important;
}

.footer-links {
  gap: 12px 22px;
}

.footer-links a {
  color: rgba(245, 247, 251, 0.62) !important;
}

.footer-bottom {
  border-color: var(--gf-line-soft);
}

/* Motion */

.reveal {
  transform: translateY(18px);
  transition:
    opacity 620ms var(--gf-ease),
    transform 620ms var(--gf-ease);
}

.motion-ready .scroll-motion:not(.section-in-view) > .section-inner,
.motion-ready .brand-banner-section.scroll-motion:not(.section-in-view) .brand-banner-content,
.motion-ready .hero.scroll-motion:not(.section-in-view) .hero-content,
.motion-ready .coming-hero.scroll-motion:not(.section-in-view) .section-inner,
.motion-ready .legal-main.scroll-motion:not(.section-in-view) .legal-shell {
  opacity: 0.5;
  transform: translateY(22px);
}

.splash-screen,
body.veya-page .splash-screen {
  background: var(--gf-bg-deep);
}

.splash-core {
  gap: 10px;
}

.splash-core::after {
  content: "";
  width: 58px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, transparent, var(--page-accent), transparent);
  transform-origin: 50% 50%;
  animation: splashSignal 680ms var(--gf-ease) both;
}

.splash-title,
body.veya-page .splash-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 650;
}

.splash-subtitle {
  color: rgba(245, 247, 251, 0.48);
}

.brand-transition {
  background: rgba(4, 5, 7, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-transition-title {
  color: var(--gf-text);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 650;
}

@keyframes signalFieldDrift {
  from {
    transform: translate3d(0, -5px, 0);
    opacity: 0.18;
  }
  to {
    transform: translate3d(14px, 8px, 0);
    opacity: 0.3;
  }
}

@keyframes signalColumn {
  from {
    transform: scaleY(0.62);
    opacity: 0.34;
  }
  to {
    transform: scaleY(1);
    opacity: 0.82;
  }
}

@keyframes splashSignal {
  from {
    opacity: 0;
    transform: scaleX(0.15);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Responsive */

@media (max-width: 1120px) {
  :root {
    --gf-container: min(100%, calc(100vw - 36px));
  }

  .nav,
  .veya-page .nav {
    position: relative;
    width: 100%;
    min-height: 52px !important;
    padding: 0 12px !important;
  }

  .brand {
    min-height: 52px;
  }

  .nav-links {
    position: absolute;
    top: 52px;
    right: -12px;
    left: -12px;
    z-index: 5;
    width: auto;
    gap: 2px;
    padding: 18px 20px 22px;
    border-top: 1px solid var(--gf-line-soft);
    border-bottom: 1px solid var(--gf-line-soft);
    background: rgba(7, 8, 11, 0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(26px) saturate(135%);
    -webkit-backdrop-filter: blur(26px) saturate(135%);
  }

  .nav-links a {
    min-height: 46px;
    padding: 0 8px;
    font-size: 1rem;
  }

  .nav-links a::after {
    right: 8px;
    bottom: 5px;
    left: 8px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero h1,
  html[lang="zh-Hans"] .hero h1 {
    width: min(780px, 84vw);
  }

  .hero-ambient {
    right: -6vw;
    width: 46vw;
    opacity: 0.55;
  }
}

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

  .product-grid,
  .coming-card-grid,
  .veya-page .coming-card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-featured,
  .product-card-weather {
    min-height: 560px;
  }

  .team-card {
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  :root {
    --gf-container: calc(100vw - 32px);
  }

  .site-header {
    background: rgba(7, 8, 11, 0.82);
  }

  .nav,
  .veya-page .nav {
    grid-template-columns: minmax(0, 1fr) auto 44px !important;
    gap: 2px !important;
    padding: 0 8px !important;
  }

  .brand-logo {
    width: 26px;
    height: 26px;
  }

  .language-switcher {
    min-height: 30px !important;
  }

  .language-option {
    min-width: 32px !important;
    min-height: 26px !important;
    padding: 0 7px !important;
  }

  .hero {
    min-height: 720px;
    align-items: end;
    padding: 118px 16px 72px;
  }

  .hero h1,
  html[lang="zh-Hans"] .hero h1 {
    width: 100%;
    font-size: clamp(2.75rem, 11.2vw, 4.1rem);
    line-height: 0.98;
  }

  .hero-ambient {
    top: 48px;
    right: -12%;
    width: 70%;
    height: 44%;
    opacity: 0.42;
  }

  .hero-trust,
  .product-trust,
  .coming-proof-list,
  .veya-page .coming-proof-list {
    gap: 4px 14px;
  }

  .hero-trust li + li::before,
  .product-trust li + li::before,
  .coming-proof-list li + li::before,
  .veya-page .coming-proof-list li + li::before {
    display: none;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .hero-actions .button-primary {
    grid-column: 1 / -1;
  }

  .hero-actions .button-secondary {
    justify-self: center;
  }

  .intro-band,
  #products,
  .veya-note-section,
  .nimbotrace-note-section,
  .veya-page .veya-note-section,
  .coming-detail-section,
  .veya-page .coming-detail-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro-band h2 {
    font-size: clamp(2.5rem, 12vw, 3.55rem);
  }

  #products-title,
  html[lang="zh-Hans"] #products-title {
    font-size: clamp(2.25rem, 10.4vw, 3.25rem);
    text-wrap: wrap;
  }

  .product-card,
  .product-card-featured,
  .product-card-weather {
    min-height: 0;
    padding: 26px;
    border-radius: 22px;
  }

  .card-topline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
  }

  .card-topline .product-kicker,
  .card-topline .availability {
    grid-column: auto;
  }

  .product-card h3 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .signal-list {
    margin-top: 0;
    padding-top: 48px;
  }

  .card-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .card-actions .button-primary {
    grid-column: 1 / -1;
  }

  .card-actions .button-secondary {
    justify-self: center;
  }

  .coming-hero,
  .veya-page .coming-hero,
  .nimbotrace-hero {
    min-height: 680px;
    padding: 124px 16px 82px;
  }

  .coming-grid,
  .veya-page .coming-grid {
    width: 100%;
    text-align: left;
  }

  .coming-copy,
  .veya-page .coming-copy {
    justify-items: start;
  }

  .coming-copy h1,
  .veya-page .coming-copy h1 {
    font-size: clamp(4.2rem, 21vw, 6.4rem);
  }

  .coming-copy-main,
  .veya-page .coming-copy-main {
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .coming-proof-list,
  .veya-page .coming-proof-list,
  .coming-actions {
    justify-content: flex-start;
  }

  .veya-note,
  .veya-page .veya-note {
    padding: 30px;
    border-radius: 22px;
  }

  .veya-note h2,
  .veya-page .veya-note h2,
  .coming-detail-section .section-heading h2,
  .veya-page .coming-detail-section .section-heading h2 {
    font-size: clamp(2.55rem, 12.5vw, 3.8rem);
  }

  .coming-card,
  .veya-page .coming-card {
    min-height: 208px;
    border-radius: 18px;
  }

  .legal-main {
    padding: 120px 16px 86px;
  }

  .legal-header h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .team-card {
    min-height: 440px;
    border-radius: 22px;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ambient::before,
  .hero-thread,
  .splash-core::after {
    animation: none !important;
  }
}
