:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #10b981;
  --text-main: #111827;
  --text-secondary: #6b7280;
  --bg: #ffffff;
  --card: #f9fafb;
  --border: #e5e7eb;
  --shadow: none;
  --shadow-lg: none;
  --radius: 12px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family:
    Inter, "Noto Sans SC", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  color: var(--text-main);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-section {
  background: #ffffff;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-desc {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.faq-desc {
  margin-left: auto;
  margin-right: auto;
}

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

.card:hover {
  transform: scale(1.03);
  border-color: #dbe4f0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.faq-item {
  min-height: 220px;
  padding: 28px;
  background: #ffffff;
}

.faq-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
  color: #0f172a;
}

.faq-item p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--text-main);
  background: #fff;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #f3f4f6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text-main);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 0 18px;
}

.mobile-nav-inner {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.first-screen {
  position: relative;
  min-height: 778px;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(191, 219, 254, 0.5), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(224, 242, 254, 0.65), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 42%, #ffffff 100%);
}

.first-screen > .container {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 778px;
  display: grid;
  grid-template-rows: 70px 60px 500px 148px;
}

.fs-topbar {
  display: flex;
  grid-row: 1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
  padding: 0 24px;
  border-bottom: 1px solid #dbeafe;
  background: linear-gradient(90deg, #dbeafe 0%, #f8fbff 48%, #e0f2fe 100%);
}

.fs-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fs-topbar-orb {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.fs-topbar-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #334155;
}

.fs-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.fs-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #94a3b8;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fs-close:hover {
  color: #475569;
  background: #f1f5f9;
}

.fs-shell {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  display: contents;
}

.fs-nav {
  display: flex;
  grid-row: 2;
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  z-index: 40;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 60px;
  width: 100%;
  margin: 0;
  padding: 0 24px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.96);
  transition:
    top 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.fs-nav.is-pinned {
  top: 0;
}

.fs-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  white-space: nowrap;
}

.fs-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fs-logo img {
  display: block;
  width: auto;
  height: 28px;
}

.fs-brand-divider {
  width: 1px;
  height: 18px;
  flex: 0 0 auto;
  background: #cbd5e1;
}

.fs-brand-name {
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.fs-brand:hover .fs-brand-name {
  color: #0f172a;
}

.fs-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.fs-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.fs-menu a:hover {
  color: #0f172a;
}

.fs-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 16px;
}

.fs-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  background: #fff;
  transition: all 0.3s ease;
}

.fs-btn-light:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.fs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  transition: all 0.3s ease;
}

.fs-btn-primary:hover {
  transform: scale(1.03);
  background: #3b82f6;
}

.fs-content {
  padding: 0;
  display: contents;
}

.fs-banner {
  position: relative;
  isolation: isolate;
  grid-row: 3;
  height: 500px;
  width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(59, 130, 246, 0.34), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.2), transparent 28%),
    linear-gradient(135deg, #070b16 0%, #101a32 52%, #10213f 100%);
  overflow: hidden;
}

.fs-copy-block {
  position: relative;
  z-index: 2;
  width: min(560px, 46vw);
  max-width: 560px;
  padding: 124px 0 0 clamp(72px, 8vw, 168px);
}

.fs-copy-tag {
  display: inline-flex;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #f9fafb;
}

.fs-title {
  margin: 16px 0 0;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.fs-title-main {
  font-weight: 700;
  color: #ffffff;
}

.fs-title-accent {
  font-weight: 700;
  background: linear-gradient(90deg, #8fb7ff 0%, #c9d7ff 55%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fs-subtitle {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.45;
  color: #f8fafc;
  white-space: nowrap;
}

.fs-desc {
  max-width: 500px;
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.9;
  color: #cbd5e1;
}

.fs-copy-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 36px;
}

.fs-cta-primary,
.fs-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.fs-cta-primary {
  color: #fff;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.fs-cta-primary:hover {
  transform: scale(1.03);
  background: #3b82f6;
}

.fs-cta-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.fs-cta-secondary:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.fs-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,7,12,0.24) 0%, rgba(6,7,12,0.08) 46%, rgba(6,7,12,0) 68%),
    radial-gradient(circle at 36% 120%, rgba(37,99,235,0.28), transparent 42%);
}

.fs-hero-carousel {
  position: absolute;
  top: 32px;
  right: 4vw;
  bottom: 32px;
  z-index: 3;
  width: min(46vw, 660px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.fs-hero-carousel-viewport,
.fs-hero-slide,
.fs-hero-article {
  width: 100%;
  height: 100%;
}

.fs-hero-carousel-viewport {
  position: relative;
}

.fs-hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(22px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.fs-hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.fs-hero-article {
  display: grid;
  grid-template-rows: 54% minmax(0, 1fr);
  color: #0f172a;
  background: #ffffff;
}

.fs-hero-article:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: -3px;
}

.fs-hero-article-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eef2f7;
}

.fs-hero-article-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.fs-hero-article:hover .fs-hero-article-image img {
  transform: scale(1.015);
}

.fs-hero-article-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 18px 22px 56px;
}

.fs-hero-article-copy h2 {
  display: -webkit-box;
  overflow: hidden;
  margin: 12px 0 0;
  color: #0f172a;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.34;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fs-hero-article-link {
  margin-top: auto;
  color: #2563eb;
  font-size: 14px;
  font-weight: 650;
}

.fs-hero-carousel-dots {
  position: absolute;
  left: 22px;
  bottom: 23px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fs-hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.fs-hero-carousel-dots button.is-active {
  width: 24px;
  background: #2563eb;
}

.fs-hero-carousel-dots button:focus-visible,
.fs-hero-carousel-controls button:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}

.fs-hero-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.fs-hero-carousel-controls button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  color: #334155;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fs-hero-carousel-controls button:hover {
  color: #ffffff;
  border-color: #2563eb;
  background: #2563eb;
}

.fs-hero-carousel-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 1440px) {
  .fs-hero-carousel {
    top: 12px;
    bottom: 12px;
    width: min(56vw, 840px);
  }

  .fs-hero-article {
    grid-template-rows: 75% minmax(0, 1fr);
  }

  .fs-hero-article-copy {
    padding: 10px 22px 48px;
  }

  .fs-hero-article-copy h2 {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.3;
  }
}

.fs-matrix {
  display: grid;
  grid-row: 4;
  gap: 0;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: 150px;
}

.fs-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 24px 24px;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-radius: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.3s ease;
}

.fs-product-card:last-child {
  border-right: 0;
}

.fs-product-card:hover,
.fs-product-card.active {
  box-shadow: none;
}

.fs-product-card.active.flomind,
.fs-product-card.active:not(.geo):not(.oframe):not(.nightbee):not(.tokenbee) {
  background: linear-gradient(135deg, #eef2f7 0%, #ffffff 44%, #ffffff 58%, #e5e7eb 100%);
}

.fs-product-card.active.geo {
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 44%, #ffffff 58%, #e0f2fe 100%);
}

.fs-product-card.active.oframe {
  background: linear-gradient(135deg, #edfdf4 0%, #ffffff 44%, #ffffff 58%, #dcfce7 100%);
}

.fs-product-card.active.nightbee {
  background: linear-gradient(135deg, #fff9e8 0%, #ffffff 44%, #ffffff 58%, #fef3c7 100%);
}

.fs-product-card.active.tokenbee {
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 44%, #ffffff 58%, #fce7f3 100%);
}

.fs-matrix:hover .fs-product-card.active:not(:hover) {
  background: rgba(240, 246, 255, 0.75);
}

.fs-product-card.geo:hover {
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 44%, #ffffff 58%, #e0f2fe 100%);
}

.fs-product-card.oframe:hover {
  background: linear-gradient(135deg, #edfdf4 0%, #ffffff 44%, #ffffff 58%, #dcfce7 100%);
}

.fs-product-card.nightbee:hover {
  background: linear-gradient(135deg, #fff9e8 0%, #ffffff 44%, #ffffff 58%, #fef3c7 100%);
}

.fs-product-card.tokenbee:hover {
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 44%, #ffffff 58%, #fce7f3 100%);
}

.fs-product-card:not(.geo):not(.oframe):not(.nightbee):not(.tokenbee):hover {
  background: linear-gradient(135deg, #eef2f7 0%, #ffffff 44%, #ffffff 58%, #e5e7eb 100%);
}

.fs-product-inner {
  width: 100%;
  max-width: 220px;
  height: 100%;
  margin: 0 0 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 12px 0 0;
}

.fs-product-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  width: 100%;
}

.fs-product-top > div,
.fs-product-copy {
  min-width: 0;
}

.fs-product-copy {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.fs-product-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fs-product-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.fs-product-logo-large {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.fs-product-logo-large img {
  width: 36px;
  height: 36px;
}

.fs-product-logo-xl {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.fs-product-logo-xl img {
  width: 42px;
  height: 42px;
}

.fs-product-card.tokenbee .fs-product-logo img {
  width: 40px;
  height: 40px;
}

.fs-product-card:first-child .fs-product-logo img {
  width: 38px;
  height: 38px;
}

.fs-product-card.geo .fs-product-logo img {
  width: 40px;
  height: 40px;
}

.fs-product-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1439px) {
  .fs-float {
    display: none;
  }
}

.fs-product-desc {
  position: absolute;
  inset: -16px 0 auto 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #475569;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: opacity 0.3s ease;
}

.fs-product-bottom {
  position: relative;
  height: 28px;
  width: 100%;
  margin-top: 12px;
}

.fs-product-desc-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fs-product-desc-arrow {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.fs-product-link {
  position: absolute;
  left: 0;
  top: -2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #0f172a;
  background: #fff;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.fs-product-card:hover .fs-product-desc,
.fs-product-card.active .fs-product-desc {
  opacity: 0;
}

.fs-product-card:hover .fs-product-link,
.fs-product-card.active .fs-product-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fs-matrix:hover .fs-product-card.active:not(:hover) .fs-product-desc {
  opacity: 1;
}

.fs-matrix:hover .fs-product-card.active:not(:hover) .fs-product-link {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.section-tabbar {
  position: relative;
  min-height: 74px;
  margin: 0 0 94px;
}

.section-tabbar-inner {
  display: flex;
  justify-content: center;
}

.section-tabbar.is-fixed .section-tabbar-inner {
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  z-index: 30;
  padding: 20px 48px;
}

.section-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: #f3f4f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.section-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.section-tab.active {
  color: #fff;
  background: #2f343f;
  box-shadow: 0 8px 20px rgba(47, 52, 63, 0.18);
}

.showcase-shell {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 64px;
  overflow: hidden;
  padding: 12px 0;
  background: #ffffff;
}

.showcase-shell::before,
.showcase-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 112px;
  z-index: 10;
  pointer-events: none;
}

.showcase-shell::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0) 100%);
}

.showcase-shell::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0) 100%);
}

.showcase-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 20px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  --showcase-card-width: 320px;
  --showcase-card-height: 385px;
  --showcase-mask-rgb: 247, 248, 255;
  position: relative;
  flex: 0 0 var(--showcase-card-width);
  width: var(--showcase-card-width);
  min-width: var(--showcase-card-width);
  max-width: var(--showcase-card-width);
  height: var(--showcase-card-height);
  min-height: var(--showcase-card-height);
  max-height: var(--showcase-card-height);
  aspect-ratio: 320 / 385;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
  color: #1f2937;
  scroll-snap-align: center;
  background-color: #f7f8ff;
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 178px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(var(--showcase-mask-rgb), 0.96) 0%,
      rgba(var(--showcase-mask-rgb), 0.82) 42%,
      rgba(var(--showcase-mask-rgb), 0) 100%
    );
}

.showcase-card.task-execution-card { --showcase-mask-rgb: 239, 244, 255; }
.showcase-card.geo-card { --showcase-mask-rgb: 235, 248, 245; }
.showcase-card.image-gen-card { --showcase-mask-rgb: 243, 235, 255; }
.showcase-card.digital-human-card { --showcase-mask-rgb: 255, 241, 232; }
.showcase-card.competitor-analysis-card { --showcase-mask-rgb: 239, 244, 255; }
.showcase-card.sentiment-card { --showcase-mask-rgb: 232, 247, 243; }
.showcase-card.trends-card { --showcase-mask-rgb: 232, 247, 243; }
.showcase-card.short-video-card { --showcase-mask-rgb: 242, 235, 255; }
.showcase-card.influencer-card { --showcase-mask-rgb: 255, 241, 232; }
.showcase-card.data-analysis-card { --showcase-mask-rgb: 239, 244, 255; }
.showcase-card.ad-launch-card { --showcase-mask-rgb: 239, 244, 255; }
.showcase-card.hardware-card { --showcase-mask-rgb: 245, 247, 255; }

.showcase-card.task-execution-card,
.showcase-card.image-gen-card,
.showcase-card.geo-card,
.showcase-card.competitor-analysis-card,
.showcase-card.sentiment-card,
.showcase-card.trends-card,
.showcase-card.short-video-card,
.showcase-card.ad-launch-card,
.showcase-card.influencer-card,
.showcase-card.data-analysis-card,
.showcase-card.digital-human-card {
  background-size: 100% 100%;
  background-position: center;
}

.showcase-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.showcase-brand p {
  margin: 0;
  font-size: 18px;
  font-weight: 450;
  line-height: 1;
  letter-spacing: 0;
  color: #111827;
}


.showcase-card h3 {
  position: relative;
  z-index: 2;
  max-width: 232px;
  margin: 24px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #1f2937;
}

.showcase-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 36px;
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

.showcase-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(31, 41, 55, 0.88);
}

.showcase-subtitle {
  position: relative;
  z-index: 2;
  margin: 12px 0 0;
  max-width: 214px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(31, 41, 55, 0.4);
}

.showcase-cta {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.showcase-cta svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.showcase-viz {
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.35);
}

.showcase-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  height: 196px;
  padding-top: 20px;
}

.showcase-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 72%;
  opacity: 0.86;
}

.showcase-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.showcase-bars span {
  width: 28px;
  border-radius: 12px;
  background: rgba(124, 92, 228, 0.56);
}

.product-showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
}

.product-showcase-tab {
  width: 112px;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 12px 18px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.product-showcase-tab:hover {
  background: #fafafb;
}

.product-showcase-tab.active {
  background: #f5f5f7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.product-showcase-badge {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border: 1px solid #c7b7ff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  color: #8b5cf6;
}

.product-showcase-badge.is-empty {
  border-color: transparent;
  color: transparent;
}

.product-showcase-tab img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.product-showcase-tab span:last-child {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #111827;
}

.product-showcase-stage {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.product-showcase-copy {
  border-radius: 24px;
  background: #f6f8fb;
  padding: 40px 32px;
}

.product-showcase-copy-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.product-showcase-copy-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.product-showcase-copy h3 {
  max-width: 360px;
  margin: 32px 0 0;
  font-size: clamp(24px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

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

.product-showcase-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.86;
  color: #4b5563;
}

.product-showcase-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 11px;
  flex: 0 0 auto;
  border-radius: 3px;
  transform: rotate(45deg);
  background: #bfd2ff;
}

.product-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.product-showcase-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08);
}

.product-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 16%, rgba(255,255,255,0.96), rgba(255,255,255,0) 56%);
  pointer-events: none;
}

.product-showcase-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 456px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
}

.product-showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 12;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.25);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.showcase-arrow.prev { left: 80px; }
.showcase-arrow.next { right: 80px; }

.showcase-arrow svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  .section-tabbar.is-fixed .section-tabbar-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-showcase-tabs {
    gap: 12px;
    justify-content: flex-start;
  }

  .product-showcase-tab {
    min-width: calc(50% - 6px);
  }

  .product-showcase-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-showcase-visual {
    min-height: auto;
    padding: 20px;
  }

  .product-showcase-frame {
    min-height: 320px;
  }

  .showcase-card {
    flex-basis: var(--showcase-card-width);
    width: var(--showcase-card-width);
    min-width: var(--showcase-card-width);
    max-width: var(--showcase-card-width);
    height: var(--showcase-card-height);
    min-height: var(--showcase-card-height);
    max-height: var(--showcase-card-height);
    padding: 24px;
  }

  .showcase-card h3 {
    font-size: 28px;
  }

  .showcase-arrow {
    display: none;
  }

  .showcase-shell::before,
  .showcase-shell::after {
    width: 64px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 88px;
  color: #f9fafb;
  background: linear-gradient(135deg, #1f2937 0%, #2563eb 60%, #3b82f6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 20%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(103, 232, 249, 0.1);
  filter: blur(48px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 42% 58%;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.hero-title {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  color: #fff;
  font-weight: 700;
}

.hero-subtitle {
  margin: 32px 0 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: #f9fafb;
}

.hero-actions {
  margin-top: 40px;
}

.hero-btn-primary {
  width: 160px;
  height: 48px;
  padding: 0;
  color: #fff;
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 52%, #2563eb 100%);
}

.hero-btn-primary:hover {
  transform: scale(1.02);
  background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 52%, #3b82f6 100%);
}

.hero-btn-secondary {
  width: 160px;
  height: 48px;
  padding: 0;
  color: #fff;
  border: 2px solid #2563eb;
  background: transparent;
}

.hero-btn-secondary:hover {
  transform: scale(1.02);
  border-color: transparent;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
}

.hero-visual {
  position: relative;
}

.hero-orb-one,
.hero-orb-two,
.hero-orb-three {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.hero-orb-one {
  left: 8%;
  top: 8%;
  width: 112px;
  height: 112px;
  background: rgba(103, 232, 249, 0.2);
}

.hero-orb-two {
  right: 4%;
  bottom: 4%;
  width: 144px;
  height: 144px;
  background: rgba(147, 197, 253, 0.2);
}

.hero-orb-three {
  right: 22%;
  top: 4%;
  width: 96px;
  height: 96px;
  background: rgba(196, 181, 253, 0.16);
}

.hero-perspective {
  position: relative;
  perspective: 1600px;
}

.hero-shadow {
  position: absolute;
  inset: 24px;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(28px);
}

.hero-dashboard {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transform: rotateX(4deg) rotateY(-7deg) rotate(1.5deg);
}

.hero-screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.88);
}

.hero-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-screen-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.hero-screen-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: #cbd5e1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-dots i:nth-child(1) {
  background: #60a5fa;
}

.hero-dots i:nth-child(2) {
  background: #34d399;
}

.hero-dots i:nth-child(3) {
  background: #64748b;
}

.hero-screen-body {
  position: relative;
  min-height: 420px;
  padding: 24px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.22), transparent 24%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.hero-screen-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 0.85fr;
}

.hero-main-panel,
.hero-side-panel,
.hero-asset-panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero-main-panel {
  padding: 16px;
}

.hero-main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-mini-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hero-flow-title {
  margin: 10px 0 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.hero-running-badge {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #bbf7d0;
  background: rgba(16, 185, 129, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-stat-card {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.hero-stat-label {
  margin-top: 5px;
  font-size: 12px;
  color: #cbd5e1;
}

.hero-workflow {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.52);
}

.hero-workflow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-workflow-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.hero-workflow-note {
  font-size: 12px;
  color: #94a3b8;
}

.hero-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hero-workflow-step {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-workflow-step small {
  color: #64748b;
}

.hero-workflow-step p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #f8fafc;
}

.hero-side-stack {
  display: grid;
  gap: 16px;
}

.hero-side-panel,
.hero-asset-panel {
  padding: 16px;
}

.hero-product-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hero-product-item {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.hero-product-item strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.hero-product-item span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #cbd5e1;
}

.hero-asset-panel p {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
}

.floating-card {
  position: absolute;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.floating-card:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.14);
}

.floating-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pill-cyan {
  color: #cffafe;
  background: rgba(34, 211, 238, 0.2);
}

.pill-emerald {
  color: #d1fae5;
  background: rgba(52, 211, 153, 0.2);
}

.pill-violet {
  color: #ede9fe;
  background: rgba(167, 139, 250, 0.2);
}

.pill-amber {
  color: #fef3c7;
  background: rgba(251, 191, 36, 0.2);
}

.floating-card p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.floating-geo {
  left: -2%;
  top: 12%;
  width: 160px;
}

.floating-oframe {
  right: -1%;
  top: 10%;
  width: 176px;
}

.floating-nightbee {
  left: 6%;
  bottom: 9%;
  width: 144px;
}

.floating-tokenbee {
  right: 10%;
  bottom: 4%;
  width: 176px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.capability-card,
.product-card,
.scenario-card,
.trust-card {
  padding: 28px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--primary);
  background: #fff;
}

.icon-box svg,
.trust-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin: 20px 0 0;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.card p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.product-scroll {
  overflow-x: auto;
  padding-bottom: 6px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(240px, 1fr));
  gap: 20px;
  min-width: 1220px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: #eff6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

.learn-link:hover {
  color: var(--primary-dark);
}

.scenario-visual {
  display: flex;
  align-items: end;
  min-height: 178px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08)),
    #fff;
}

.scenario-mini {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.scenario-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.scenario-mini-grid span {
  display: block;
  height: 62px;
  border-radius: 16px;
}

.scenario-mini-grid span:nth-child(1) {
  background: #dbeafe;
}

.scenario-mini-grid span:nth-child(2) {
  background: #d1fae5;
}

.scenario-mini-grid span:nth-child(3) {
  background: #e5e7eb;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--primary);
  background: #eff6ff;
}

.trust-value {
  margin: 22px 0 0;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.trust-label {
  margin: 10px 0 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.partner-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(200px, auto));
  gap: 16px;
  margin-top: 48px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
}

.partner-card.tall {
  min-height: 416px;
  grid-row: span 2;
}

.partner-card:not(.tall) {
  min-height: 184px;
}

.partner-card.sky {
  background: linear-gradient(135deg, #e6f4ff 0%, #ffffff 55%, #ebf8ff 100%);
}

.partner-card.violet {
  background: linear-gradient(135deg, #f2efff 0%, #ffffff 55%, #f8f1ff 100%);
}

.partner-card.support-bg {
  background:
    linear-gradient(180deg, rgba(247, 243, 255, 0.32) 0%, rgba(247, 243, 255, 0.12) 24%, rgba(247, 243, 255, 0.02) 100%),
    url("../public/backgrounds/service-24-7.webp") center bottom / cover no-repeat,
    #f7f3ff;
}

.partner-card.blue {
  background: #f6f6fb;
}

.partner-card.pink {
  background: #f6f6fb;
}

.partner-card.green {
  background: #f6f6fb;
}

.partner-card.orange {
  background: #f6f6fb;
}

.partner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.partner-top h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.partner-top p {
  margin: 20px 0 0;
  max-width: 230px;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.partner-icon {
  --icon-color: #2563eb;
  --icon-tint: rgba(59, 130, 246, 0.14);
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 16px;
  color: var(--icon-color);
  background-image:
    radial-gradient(circle at 50% 50%, var(--icon-tint), rgba(255, 255, 255, 0) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 251, 255, 0.98));
}

.partner-icon svg {
  width: 20px;
  height: 20px;
}

.partner-visual {
  position: absolute;
  inset: auto 28px 0 28px;
  height: 180px;
  border-radius: 28px 28px 0 0;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.24) 48%, transparent 70%);
}

.partner-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  width: 112px;
  height: 112px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  filter: blur(24px);
}

.partner-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 168px;
  height: 168px;
  transform: translateX(-50%);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.92));
}

.partner-photo {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 268px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}

.partner-photo-glow {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 12px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.88), rgba(223, 242, 255, 0.66) 38%, rgba(223, 242, 255, 0) 74%);
  filter: blur(20px);
}

.partner-photo-frame {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150%;
  height: 100%;
  transform: translateX(-50%);
}

.partner-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.cta-wrap {
  padding: 56px 32px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
}

.cta-wrap .eyebrow {
  color: #bfdbfe;
}

.cta-wrap .section-title,
.cta-wrap .section-desc {
  color: #fff;
}

.cta-wrap .section-desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
}

.footer {
  position: relative;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #25282f;
  color: #ffffff;
}

.footer-company-banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  transform: translateY(-50%);
}

.footer-company-banner span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #25282f;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr 0.9fr;
  gap: 48px 28px;
  align-items: start;
}

.footer h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

.footer-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.footer-list a,
.footer-list span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.footer-pill-primary,
.footer-pill-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer-pill-primary {
  background: #4f7cff;
  color: #ffffff;
}

.footer-pill-primary:hover {
  background: #678fff;
}

.footer-pill-secondary {
  background: #ffffff;
  border: 1px solid #78a4ff;
  color: #4f7cff;
}

.footer-pill-secondary:hover {
  background: #eff4ff;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  width: auto;
  height: 26px;
  display: block;
}

.footer-social {
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.footer-social:hover {
  transform: scale(1.05);
}

.footer-social > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.footer-qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  width: 148px;
  height: 148px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.footer-qr img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.footer-social:hover .footer-qr {
  display: flex;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-meta-row svg {
  width: 16px;
  height: 16px;
}

.footer-locale {
  position: relative;
}

.footer-locale-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.footer-locale-trigger:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-locale-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: none;
  min-width: 124px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.footer-locale.open .footer-locale-menu {
  display: block;
}

.footer-locale-option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  color: #1f2937;
}

.footer-locale-option.active {
  color: #4f7cff;
}

.footer-locale-option:hover {
  background: #f5f7ff;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin-top: 28px;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-legal a.footer-police {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-legal a.footer-police img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .container {
    width: min(100% - 48px, 100%);
  }

  .first-screen {
    min-height: 0;
    height: auto;
  }

  .first-screen > .container {
    min-height: 0;
    height: auto;
    display: block;
  }

  .fs-topbar,
  .fs-nav,
  .fs-banner {
    gap: 16px;
  }

  .fs-nav {
    position: relative;
    top: 0;
    left: auto;
    right: auto;
    height: auto;
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .fs-menu {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }

  .fs-content {
    padding: 28px 18px 20px;
  }

  .fs-banner {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    width: 100%;
    margin: 0;
    padding: 48px 24px 36px;
  }

  .fs-copy-block {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .fs-hero-carousel {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 720px;
    height: 440px;
    margin: 36px auto 0;
  }

  .fs-visual-stage {
    padding-top: 0;
  }

  .fs-title {
    font-size: 48px;
  }

  .fs-screen-body {
    min-height: 0;
  }

  .fs-matrix {
    height: auto;
    width: 100%;
    margin: 0;
  }

  .fs-body-grid,
  .fs-matrix,
  .grid-4,
  .grid-3,
  .grid-2,
  .faq-grid,
  .footer-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-rows: auto;
  }

  .partner-card.tall {
    min-height: 280px;
    grid-row: span 1;
  }

  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta-row {
    justify-content: flex-start;
  }

  .fs-float {
    display: none;
  }

  .product-grid {
    min-width: 1120px;
  }
}

@media (max-width: 640px) {
  .fs-brand {
    gap: 9px;
    margin-left: 0;
  }

  .fs-brand-divider {
    height: 16px;
  }

  .fs-brand-name {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: calc(100% - 48px);
  }

  .faq-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .faq-item {
    min-height: 0;
    padding: 22px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

  .fs-topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    height: auto;
  }

  .fs-topbar-right {
    justify-content: space-between;
  }

  .fs-topbar-orb {
    display: none;
  }

  .fs-nav {
    align-items: flex-start;
  }

  .fs-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fs-actions {
    width: 100%;
    justify-content: space-between;
  }

  .fs-btn-light,
  .fs-btn-primary {
    flex: 1 1 auto;
  }

  .fs-banner {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
    width: 100%;
    margin: 0;
    padding: 40px 24px 28px;
  }

  .fs-hero-carousel {
    height: 420px;
    margin-top: 30px;
    border-radius: 18px;
  }

  .fs-hero-article {
    grid-template-rows: 42% minmax(0, 1fr);
  }

  .fs-hero-article-copy {
    padding: 16px 18px 54px;
  }

  .fs-hero-article-copy h2 {
    font-size: 18px;
  }

  .fs-hero-carousel-dots {
    left: 18px;
  }

  .fs-hero-carousel-controls {
    right: 14px;
  }

  .fs-title {
    font-size: 38px;
    white-space: normal;
  }

  .fs-subtitle {
    font-size: 18px;
    white-space: normal;
  }

  .fs-desc {
    font-size: 16px;
  }

  .fs-copy-actions {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .fs-copy-actions .fs-cta-primary,
  .fs-copy-actions .fs-cta-secondary {
    width: 100%;
  }

  .fs-cta-primary,
  .fs-cta-secondary {
    width: 100%;
  }

  .fs-screen-body {
    min-height: auto;
  }

  .fs-main-title {
    font-size: 24px;
  }

  .fs-metric-grid,
  .fs-flow-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    padding: 42px 22px;
  }
}

@media (max-width: 380px) {
  .fs-brand-divider,
  .fs-brand-name {
    display: none;
  }
}

.showcase-bg-task { background-image: url("../public/showcase/task-execution-bg.webp"); }
.showcase-bg-geo { background-image: url("../public/showcase/geo-bg.webp"); }
.showcase-bg-image-gen { background-image: url("../public/showcase/image-gen-bg.webp"); }
.showcase-bg-digital-human { background-image: url("../public/showcase/digital-human-bg.webp"); }
.showcase-bg-hardware { background-image: url("../public/showcase/showcase-card-hardware.webp"); }
.showcase-bg-competitor { background-image: url("../public/showcase/competitor-analysis-bg.webp"); }
.showcase-bg-sentiment { background-image: url("../public/showcase/sentiment-bg.webp"); }
.showcase-bg-short-video { background-image: url("../public/showcase/short-video-bg.webp"); }
.showcase-bg-influencer { background-image: url("../public/showcase/influencer-bg.webp"); }
.showcase-bg-data-analysis { background-image: url("../public/showcase/data-analysis-bg.webp"); }
.showcase-bg-trends { background-image: url("../public/showcase/trends-bg.webp"); }
.showcase-bg-ad-launch { background-image: url("../public/backgrounds/ad-launch-cropped.webp"); }
.product-showcase-visual-default { background: linear-gradient(135deg, #f4f8ff 0%, #eef4ff 56%, #e3ecff 100%); }
.partner-grid-spaced { margin-top: 64px; }
.partner-icon-consultant { --icon-color: #4f8ee8; --icon-tint: rgba(79, 142, 232, 0.16); }
.partner-icon-support { --icon-color: #8b5cf6; --icon-tint: rgba(139, 92, 246, 0.16); }
.partner-icon-tech { --icon-color: #3b82f6; --icon-tint: rgba(59, 130, 246, 0.14); }
.partner-icon-training { --icon-color: #c084fc; --icon-tint: rgba(192, 132, 252, 0.14); }
.partner-icon-help { --icon-color: #14b8a6; --icon-tint: rgba(20, 184, 166, 0.14); }
.partner-icon-iteration { --icon-color: #fb923c; --icon-tint: rgba(251, 146, 60, 0.14); }
.footer-actions-spaced { margin-top: 16px; }
.footer-contact-line { display: inline-flex; align-items: center; gap: 8px; }
.section-heading-center { text-align: center; }
.section-heading-showcase { margin: 0 0 70px; }
.section-heading-ecosystem { margin: 0 0 40px; }
.showcase-heading { margin: 0; color: #111827; font-size: clamp(32px, 4vw, 44px); font-weight: 600; line-height: 1.15; letter-spacing: -0.03em; }
.ecosystem-heading { margin: 0; font-size: 40px; line-height: 1.2; }
.btn-row-centered { justify-content: center; margin-top: 32px; }
