/* Portal homepage — light purple tech theme */

:root {
  --site-font: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --site-primary: #7c5cff;
  --site-primary-dark: #6347f4;
  --site-accent: #a855f7;
  --site-blue: #6366f1;
  --site-gradient: linear-gradient(135deg, #c084fc 0%, #818cf8 45%, #6366f1 100%);
  --site-gradient-hot: linear-gradient(135deg, #a855f7 0%, #ec4899 55%, #f97316 100%);
  --site-text: #1e293b;
  --site-text-light: #475569;
  --site-muted: #94a3b8;
  --site-border: rgba(124, 92, 255, 0.12);
  --site-bg: #ffffff;
  --site-section: #faf8ff;
  --site-container: min(1200px, calc(100vw - 48px));
  --site-radius: 16px;
  --site-radius-lg: 24px;
  --site-shadow: 0 8px 32px rgba(99, 71, 244, 0.08);
  --site-shadow-lg: 0 20px 60px rgba(99, 71, 244, 0.12);
}

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

html { scroll-behavior: smooth; }

body.site-portal {
  margin: 0;
  font-family: var(--site-font);
  color: var(--site-text);
  background: var(--site-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-container {
  width: var(--site-container);
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--site-border);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(99, 71, 244, 0.08);
}

.site-header__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--site-text-light);
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--site-primary);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.site-btn:hover { transform: translateY(-1px); }

.site-btn--ghost {
  color: var(--site-text-light);
  background: transparent;
}

.site-btn--ghost:hover { color: var(--site-primary); }

.site-btn--primary {
  color: #fff;
  background: var(--site-gradient);
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.35);
}

.site-btn--hot {
  color: #fff;
  background: var(--site-gradient-hot);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
}

.site-btn--lg {
  height: 52px;
  padding: 0 36px;
  font-size: 16px;
}

.site-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--site-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--site-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.site-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Floating sidebar ── */
.site-float-bar {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow-lg);
  backdrop-filter: blur(12px);
}

.site-float-bar__item {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--site-primary);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.site-float-bar__item:hover {
  background: rgba(124, 92, 255, 0.1);
}

.site-float-bar__item svg { width: 20px; height: 20px; }

.site-float-bar__label {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 700;
  color: var(--site-primary);
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ── Hero / Carousel ── */
.site-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 48px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f0ff 0%, #ede9fe 35%, #faf8ff 70%, #fff 100%);
}

.site-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.site-hero__blob--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.6), transparent 70%);
}

.site-hero__blob--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.5), transparent 70%);
}

.site-hero__blob--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.35), transparent 70%);
}

.site-carousel {
  position: relative;
  width: min(960px, 100%);
  margin-bottom: 40px;
  z-index: 1;
}

.site-carousel__track {
  position: relative;
  border-radius: var(--site-radius-lg);
  overflow: hidden;
  box-shadow: var(--site-shadow-lg);
  aspect-ratio: 16 / 6;
  background: var(--site-gradient);
}

.site-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.site-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.site-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-carousel__slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.site-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.site-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(124, 92, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.site-carousel__dot.is-active {
  background: var(--site-primary);
  transform: scale(1.25);
}

.site-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.site-hero__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--site-text);
  letter-spacing: -0.02em;
}

.site-hero__title em {
  font-style: normal;
  background: var(--site-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-hero__subtitle {
  margin: 0 0 32px;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--site-text-light);
  line-height: 1.7;
}

.site-hero__cta { margin-bottom: 40px; }

.site-hero__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.site-platform-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 72px;
}

.site-platform-icon__circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.site-platform-icon__circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-platform-icon span {
  font-size: 11px;
  color: var(--site-muted);
  font-weight: 500;
}

.site-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(900px, 100%);
  z-index: 1;
  position: relative;
}

.site-stat-card {
  padding: 24px 16px;
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--site-border);
  backdrop-filter: blur(8px);
  text-align: center;
  box-shadow: var(--site-shadow);
}

.site-stat-card strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  background: var(--site-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.site-stat-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--site-muted);
  line-height: 1.4;
}

/* ── Section common ── */
.site-section {
  padding: 80px 24px;
}

.site-section--alt {
  background: var(--site-section);
}

.site-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.site-section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--site-text);
  line-height: 1.35;
}

.site-section__head p {
  margin: 0;
  font-size: 15px;
  color: var(--site-text-light);
  line-height: 1.75;
}

/* ── Platform grid ── */
.site-platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.site-platform-card {
  padding: 24px 16px;
  border-radius: var(--site-radius);
  background: #fff;
  border: 1px solid #eef2ff;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.site-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow-lg);
}

.site-platform-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.site-platform-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-platform-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--site-text);
}

.site-platform-card p {
  margin: 0;
  font-size: 12px;
  color: var(--site-muted);
  line-height: 1.55;
}

/* ── Feature tabs ── */
.site-feature-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.site-feature-tab {
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--site-border);
  background: #fff;
  color: var(--site-text-light);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.site-feature-tab.is-active,
.site-feature-tab:hover {
  color: #fff;
  background: var(--site-gradient);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(124, 92, 255, 0.3);
}

.site-feature-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: var(--site-radius-lg);
  background: #fff;
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow-lg);
}

.site-feature-panel.is-active { display: grid; }

.site-feature-panel__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.site-feature-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--site-text-light);
  line-height: 1.65;
}

.site-feature-panel__list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--site-primary);
  margin-top: 2px;
}

.site-feature-panel__visual {
  border-radius: var(--site-radius);
  overflow: hidden;
  background: linear-gradient(145deg, #f5f0ff, #ede9fe);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 24px;
}

.site-feature-mock {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow);
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.site-feature-mock__bar {
  display: flex;
  gap: 6px;
}

.site-feature-mock__bar span {
  height: 8px;
  border-radius: 4px;
  background: var(--site-gradient);
  opacity: 0.7;
}

.site-feature-mock__bar span:nth-child(1) { width: 40%; }
.site-feature-mock__bar span:nth-child(2) { width: 25%; opacity: 0.4; }
.site-feature-mock__bar span:nth-child(3) { width: 15%; opacity: 0.25; }

.site-feature-mock__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 8px;
}

.site-feature-mock__chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--site-gradient);
  opacity: 0.6;
}

.site-feature-mock__chart span:nth-child(1) { height: 45%; opacity: 0.35; }
.site-feature-mock__chart span:nth-child(2) { height: 70%; opacity: 0.5; }
.site-feature-mock__chart span:nth-child(3) { height: 55%; opacity: 0.45; }
.site-feature-mock__chart span:nth-child(4) { height: 90%; opacity: 0.75; }
.site-feature-mock__chart span:nth-child(5) { height: 65%; opacity: 0.55; }

.site-feature-mock__footer {
  display: flex;
  gap: 8px;
}

.site-feature-mock__footer span {
  flex: 1;
  height: 32px;
  border-radius: 8px;
  background: rgba(124, 92, 255, 0.08);
}

/* ── Industry grid ── */
.site-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.site-industry-card {
  position: relative;
  border-radius: var(--site-radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: default;
}

.site-industry-card__bg {
  position: absolute;
  inset: 0;
  background-color: #e2e8f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s;
}

.site-industry-card:hover .site-industry-card__bg {
  transform: scale(1.06);
}

.site-industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.72));
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.site-industry-card__overlay span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

/* ── Why choose ── */
.site-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.site-why-card {
  border-radius: var(--site-radius-lg);
  padding: 36px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.site-why-card--primary {
  color: #fff;
  background: var(--site-gradient);
  box-shadow: 0 20px 50px rgba(124, 92, 255, 0.35);
}

.site-why-card--light {
  background: rgba(237, 233, 254, 0.6);
  border: 1px solid var(--site-border);
}

.site-why-card__num {
  font-size: 48px;
  font-weight: 900;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}

.site-why-card--primary .site-why-card__num { opacity: 0.25; color: #fff; }

.site-why-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
}

.site-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.85;
}

.site-why-card--light p { color: var(--site-text-light); opacity: 1; }

.site-why-card__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.site-why-card__icons span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

.site-why-card--light .site-why-card__icons span {
  background: rgba(124, 92, 255, 0.1);
  color: var(--site-primary);
}

/* ── Contact CTA ── */
.site-contact {
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 50%, #f5f0ff 100%);
  overflow: hidden;
}

.site-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
  gap: 56px 72px;
  align-items: center;
  width: min(1200px, 100%);
  max-width: var(--site-container);
  margin-inline: auto;
}

.site-contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.site-contact__text h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.35;
}

.site-contact__text p {
  margin: 0;
  font-size: 15px;
  color: var(--site-text-light);
  line-height: 1.75;
}

.site-contact__field {
  display: grid;
  gap: 8px;
}

.site-contact__field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text);
}
.site-contact__field .form-required,
.site-contact__field span em.form-required { color: #ef4444; font-style: normal; font-weight: 700; }
.site-contact__field.is-invalid input {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}
.site-contact__field .form-field__error {
  font-size: 12px;
  font-weight: 600;
  color: #ef4444;
  line-height: 1.4;
  margin-top: -2px;
}
.site-contact__field .form-field__error:empty { display: none; }

.site-contact__form input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(124, 92, 255, 0.15);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-contact__form input:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.12);
}

.site-contact__submit {
  width: 100%;
  height: 52px;
}

.site-contact__message {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.site-contact__message.is-success {
  color: #059669;
}

.site-contact__message.is-error {
  color: #dc2626;
}

.site-contact__illus {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 34vw);
  z-index: 1;
  border-radius: var(--site-radius-lg);
  overflow: hidden;
  box-shadow: var(--site-shadow-lg);
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.site-contact__illus img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Portal sub-pages (register etc.) ── */
.site-portal-page .site-page {
  min-height: calc(100vh - 72px);
  padding: 112px 32px 80px;
  background: linear-gradient(180deg, #f8f7ff 0%, #fff 28%, #f5f3ff 100%);
}

.site-register {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.site-register__card {
  width: 100%;
  padding: 48px 56px 44px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #eef2ff;
  box-shadow: var(--site-shadow-lg);
}

.site-register__head {
  text-align: center;
  margin-bottom: 32px;
}

.site-register__head h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--site-text);
  letter-spacing: -0.02em;
}

.site-register__head p {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--site-text-light);
}

.site-register__alert {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.site-register__alert.is-error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.site-register__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 20px;
  align-items: start;
}

.site-register__field {
  display: grid;
  grid-template-rows: auto auto minmax(34px, auto);
  gap: 8px;
  min-width: 0;
}

.site-register__field--full {
  grid-column: 1 / -1;
}

.site-register__field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text);
}

.site-register__field span em {
  color: #ec4899;
  font-style: normal;
}

.site-register__field input,
.site-register__field select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(124, 92, 255, 0.15);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-register__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.site-register__field input:focus,
.site-register__field select:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.12);
}

.site-register__search-select {
  position: relative;
  width: 100%;
}

.site-register__search-select:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: translateY(-72%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.site-register__search-select.open:after {
  transform: translateY(-28%) rotate(225deg);
  border-color: var(--site-primary);
}

.site-register__search-select input[data-search-select-input] {
  width: 100%;
  height: 50px;
  padding: 0 40px 0 16px;
  border: 1px solid rgba(124, 92, 255, 0.15);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-register__search-select input[data-search-select-input]:focus,
.site-register__search-select.open input[data-search-select-input] {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.12);
}

.site-register__search-select.open {
  z-index: 20;
}

.site-register__search-select .search-select-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  display: none;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(124, 92, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
  box-shadow: 0 18px 40px rgba(76, 29, 149, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.site-register__search-select.open .search-select-panel {
  display: block;
}

.site-register__search-select .search-select-panel::-webkit-scrollbar {
  width: 6px;
}

.site-register__search-select .search-select-panel::-webkit-scrollbar-thumb {
  background: rgba(124, 92, 255, 0.28);
  border-radius: 999px;
}

.site-register__search-select .search-select-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--site-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-register__search-select .search-select-panel button:hover {
  color: var(--site-primary);
  background: rgba(124, 92, 255, 0.08);
}

.site-register__search-select .search-select-panel button.is-active {
  color: var(--site-primary);
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.12), rgba(124, 92, 255, 0.04));
  box-shadow: inset 3px 0 0 var(--site-primary);
}

.site-register__search-select .search-select-panel button.is-active::after {
  content: "✓";
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--site-primary);
}

.site-register__search-select .search-select-panel strong {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-register__search-select .search-select-empty {
  margin: 0;
  padding: 16px 10px;
  color: var(--site-text-light);
  font-size: 13px;
  text-align: center;
}

.site-register__field.is-invalid .search-select input[data-search-select-input] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.site-register__field .form-required,
.site-register__field span em.form-required { color: #ef4444; font-style: normal; font-weight: 700; }
.site-register__field.is-invalid input,
.site-register__field.is-invalid select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.site-register__field .form-field__error {
  display: block;
  min-height: 34px;
  margin-top: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #ef4444;
  font-weight: 500;
}
.site-register__field .form-field__error:empty {
  display: block;
  visibility: hidden;
}

.site-register__submit {
  width: 100%;
  margin-top: 28px;
  height: 54px;
  font-size: 16px;
}

.site-register__foot {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--site-text-light);
}

.site-register__foot a {
  color: var(--site-primary);
  font-weight: 600;
}

.site-register--success .site-register__card {
  width: min(560px, 100%);
}

.site-register__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.1);
  color: var(--site-primary);
}

.site-register__success-icon svg {
  width: 32px;
  height: 32px;
}

.site-register__credentials {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.site-register__credential > span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-light);
}

.site-register__credential-value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.site-register__credential-value code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  word-break: break-all;
  color: var(--site-text);
}

.site-register__copy {
  flex-shrink: 0;
  height: 36px;
  padding: 0 14px;
  border: none;
  border-radius: 10px;
  background: rgba(124, 92, 255, 0.1);
  color: var(--site-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.site-register__copy:hover {
  background: rgba(124, 92, 255, 0.16);
}

.site-register__warn {
  margin: 0 0 24px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

/* ── Footer ── */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 24px 24px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: var(--site-container);
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
  flex: 0 1 auto;
  min-width: 0;
}

.site-footer__aside {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
  margin-left: auto;
}

.site-footer__brand img {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer__brand p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__downloads h4,
.site-footer__qr h4 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.site-footer__dl-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.site-footer__dl-btn:hover { background: rgba(255, 255, 255, 0.14); }

.site-footer__dl-btn svg { width: 20px; height: 20px; }

.site-footer__qr-box {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--site-muted);
  text-align: center;
  padding: 8px;
  overflow: hidden;
}

.site-footer__qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-footer__qr-placeholder {
  line-height: 1.5;
}

.site-footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: var(--site-container);
  margin: 0 auto 32px;
  opacity: 0.45;
}

.site-footer__partners span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.site-footer__copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  max-width: var(--site-container);
  margin: 0 auto;
}

.site-footer__copy a { color: rgba(255, 255, 255, 0.55); }

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.site-footer nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.site-footer nav a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .site-platform-grid { grid-template-columns: repeat(4, 1fr); }
  .site-feature-panel { grid-template-columns: 1fr; padding: 28px; }
  .site-feature-panel__visual { order: -1; max-height: 280px; }
  .site-contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(1200px, calc(100vw - 48px));
  }

  .site-contact__form {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--site-border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    backdrop-filter: blur(16px);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--site-border);
    font-size: 16px;
  }

  .site-nav a:last-child { border-bottom: none; }

  .site-menu-toggle { display: flex; }

  .site-header__inner {
    justify-content: space-between;
    gap: 12px;
  }

  .site-header__actions {
    margin-left: auto;
    gap: 8px;
  }

  .site-header__actions .site-btn--ghost { display: none; }

  .site-contact__illus { display: none; }

  .site-float-bar { display: none; }

  .site-stats { grid-template-columns: repeat(2, 1fr); }

  .site-platform-grid { grid-template-columns: repeat(3, 1fr); }

  .site-industry-grid { grid-template-columns: repeat(2, 1fr); }

  .site-why-grid { grid-template-columns: 1fr; }

  .site-footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__aside {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .site-header { height: 64px; padding: 0 16px; }
  .site-header__actions .site-btn { height: 36px; padding: 0 14px; font-size: 13px; }
  .site-brand img { height: 32px; }

  .site-hero { padding: 88px 16px 40px; min-height: auto; }
  .site-carousel__track { aspect-ratio: 16 / 9; border-radius: var(--site-radius); }
  .site-hero__platforms { gap: 12px; }
  .site-platform-icon { width: 56px; }
  .site-platform-icon__circle { width: 44px; height: 44px; font-size: 11px; }

  .site-section { padding: 56px 16px; }

  .site-platform-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .site-platform-card { padding: 16px 10px; }

  .site-feature-tabs { gap: 8px; }
  .site-feature-tab { height: 36px; padding: 0 14px; font-size: 13px; }
  .site-feature-panel { padding: 20px; }

  .site-industry-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .site-contact { padding: 56px 16px; }

  .site-portal-page .site-page {
    padding: 96px 16px 56px;
  }

  .site-register {
    max-width: none;
  }

  .site-register__card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .site-register__grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .site-register__field {
    grid-template-rows: auto auto minmax(30px, auto);
  }

  .site-register__field .form-field__error {
    min-height: 30px;
  }

  .site-stats { gap: 10px; }
  .site-stat-card { padding: 16px 10px; }

  .site-footer { padding: 36px 16px 20px; }
}

@media (max-width: 400px) {
  .site-platform-grid { grid-template-columns: 1fr; }
  .site-stats { grid-template-columns: 1fr 1fr; }
}

/* GEO article pages — separate from homepage portal */
html:has(body.geo-article-page) {
  height: 100%;
}

body.geo-article-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--site-font);
  color: #0f172a;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 220px);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.geo-article-header {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.geo-article-header__inner {
  width: min(1200px, calc(100vw - 32px));
  margin-inline: auto;
  display: grid;
  gap: 14px;
  padding: 14px 0 16px;
}

.geo-article-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
}

.geo-article-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.geo-article-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  font-weight: 700;
}

.geo-article-brand img {
  width: 132px;
  height: auto;
}

.geo-article-brand span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
}

.geo-article-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #475569;
}

.geo-article-nav a:hover,
.geo-article-nav a.is-active { color: #4338ca; }

.geo-article-nav a.is-active { font-weight: 700; }

.geo-article-auth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.geo-article-auth__register,
.geo-article-auth__login {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.geo-article-auth__register {
  color: #4338ca;
  background: #eef2ff;
}

.geo-article-auth__login {
  color: #fff;
  background: linear-gradient(135deg, #4338ca, #6366f1);
}

.geo-portal-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
}

.geo-portal-search__type select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.geo-portal-search input[type="search"] {
  min-height: 42px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
}

.geo-portal-search input[type="search"]:focus,
.geo-portal-search__type select:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.geo-portal-search button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #4338ca, #6366f1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.geo-article-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px 0 56px;
}

.geo-article__container {
  width: min(1200px, calc(100vw - 32px));
  margin-inline: auto;
}

.geo-article__container--wide {
  width: min(1200px, calc(100vw - 32px));
}

.geo-article__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #64748b;
}

.geo-article__breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #cbd5e1;
}

.geo-article__breadcrumb a:hover { color: #4338ca; }

.geo-article__hero {
  margin-bottom: 32px;
  padding: 28px 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.geo-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #64748b;
}

.geo-article__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 600;
}

.geo-article__tag--accent {
  background: #eef2ff;
  color: #4338ca;
}

.geo-article__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.geo-article__summary {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.geo-article__section {
  margin-bottom: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  background: #fff;
}

.geo-article__section h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.geo-article__outline,
.geo-article__content {
  color: #334155;
  font-size: 16px;
  line-height: 1.85;
}

.geo-article__content p { margin: 0 0 1em; }

.geo-article__dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.geo-article__dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.geo-article__dl dt {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

.geo-article__dl dd {
  margin: 0;
  color: #0f172a;
}

.geo-article-footer {
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #0f172a;
  color: rgba(255, 255, 255, 0.82);
}

.geo-article-footer__inner {
  width: min(1200px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 28px 0 32px;
}

.geo-article-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 14px;
}

.geo-article-footer__nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.geo-article-footer__nav a:hover {
  color: #fff;
}

.geo-article-footer__meta {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.geo-article-footer__meta strong {
  color: #fff;
  font-size: 16px;
}

.geo-article-footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.geo-article-footer__copy a { color: rgba(255, 255, 255, 0.82); }

@media (max-width: 720px) {
  .geo-article-header__inner,
  .geo-article__container,
  .geo-article__container--wide,
  .geo-article-footer__inner {
    width: calc(100vw - 24px);
  }

  .geo-article-header__top {
    flex-wrap: wrap;
  }

  .geo-article-header__right {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .geo-article-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .geo-portal-search {
    grid-template-columns: 1fr;
  }

  .geo-article-brand span { display: none; }

  .geo-article__hero,
  .geo-article__section {
    padding: 20px 18px;
  }

  .geo-article__dl div {
    grid-template-columns: 1fr;
  }
}

/* GEO company profile page */
.geo-company__hero-desc {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.geo-company__archive {
  margin-top: 8px;
}

.geo-archive-tab-nav {
  flex-wrap: nowrap;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  scrollbar-width: thin;
}

.geo-archive-tab-nav .geo-company__tab {
  flex-shrink: 0;
  border-radius: 999px;
  white-space: nowrap;
}

.geo-archive-tab-panels {
  display: grid;
  gap: 0;
}

.geo-archive-tab-panel {
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.geo-archive-intro {
  margin-bottom: 20px;
}

.geo-archive-intro h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #1e293b;
}

.geo-archive-intro p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.geo-company .archive-detail-section {
  display: grid;
  gap: 12px;
}

.geo-company .archive-detail-section + .archive-detail-section {
  margin-top: 18px;
}

.geo-company .archive-detail-section-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.geo-company .archive-detail-fields {
  display: grid;
  gap: 12px;
}

.geo-company .archive-detail-fields.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.geo-company .archive-detail-field {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.geo-company .archive-detail-label {
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.03em;
}

.geo-company .archive-detail-value {
  margin: 0;
  color: #334155;
  line-height: 1.7;
  word-break: break-word;
  font-size: 14px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.geo-company .archive-detail-field.is-block .archive-detail-value {
  min-height: 52px;
  background: #f1f5f9;
}

.geo-company .archive-detail-field.is-keywords .archive-detail-value {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.geo-company .archive-kw-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #4338ca;
  font-size: 13px;
  font-weight: 600;
}

.geo-company .archive-detail-value a {
  color: #4338ca;
  font-weight: 600;
  word-break: break-all;
}

.geo-company .archive-detail-value a:hover {
  text-decoration: underline;
}

.geo-archive-table-wrap {
  overflow-x: auto;
}

.geo-archive-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.geo-archive-table th,
.geo-archive-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.geo-archive-table th {
  color: #64748b;
  font-weight: 700;
  background: #f8fafc;
}

.geo-archive-table td {
  color: #334155;
}

.geo-archive-cards {
  display: grid;
  gap: 16px;
}

.geo-archive-card {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
}

.geo-archive-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.geo-archive-card__head h4 {
  margin: 0;
  font-size: 17px;
  color: #1e293b;
}

.geo-archive-card__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
}

.geo-archive-card__meta {
  display: grid;
  gap: 6px;
  margin: 0 0 10px;
}

.geo-archive-card__meta div {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.geo-archive-card__meta dt {
  color: #64748b;
  font-weight: 700;
}

.geo-archive-card__meta dd {
  margin: 0;
  color: #334155;
}

.geo-archive-card__intro,
.geo-archive-card__detail {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.geo-archive-card__detail {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #cbd5e1;
}

.geo-archive-card__images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.geo-archive-card__images img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.geo-archive-faqs {
  display: grid;
  gap: 10px;
}

.geo-archive-faq {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.geo-archive-faq summary {
  padding: 14px 16px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  list-style: none;
}

.geo-archive-faq summary::-webkit-details-marker {
  display: none;
}

.geo-archive-faq__answer {
  padding: 0 16px 16px;
  color: #475569;
  line-height: 1.8;
  border-top: 1px solid #f1f5f9;
}

.geo-company__knowledge {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.geo-company__tabs {
  display: grid;
  gap: 20px;
}

.geo-company__tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: #eef2ff;
}

.geo-company__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.geo-company__tab.is-active {
  background: #fff;
  color: #4338ca;
  box-shadow: 0 8px 24px rgba(67, 56, 202, 0.12);
}

.geo-company__tab-count {
  min-width: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #4338ca;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}

.geo-company__panel { display: none; }
.geo-company__panel.is-active { display: block; }

.geo-company__dl { margin-top: 8px; }

.geo-company__text-block {
  margin-top: 18px;
}

.geo-company__text-block h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #334155;
}

.geo-company__text-block div {
  color: #475569;
  line-height: 1.8;
}

.geo-company__empty {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.geo-company__knowledge-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.geo-company__knowledge-toggle {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fbff;
  color: #4338ca;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.geo-company__knowledge-body.is-raw .geo-company__markdown { display: none; }
.geo-company__knowledge-body:not(.is-raw) .geo-company__markdown-raw { display: none; }

.geo-company__markdown,
.geo-company__markdown-raw {
  color: #334155;
  line-height: 1.85;
  font-size: 15px;
}

.geo-company__markdown-raw {
  margin: 0;
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.geo-company__markdown :is(h1, h2, h3, h4) {
  margin: 1.4em 0 0.6em;
  line-height: 1.35;
}

.geo-company__markdown table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.geo-company__markdown th,
.geo-company__markdown td {
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.geo-company__lesson-list {
  display: grid;
  gap: 14px;
}

.geo-company__lesson-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fbff;
}

.geo-company__lesson-main h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.geo-company__lesson-main h3 a {
  color: #1e293b;
  text-decoration: none;
}

.geo-company__lesson-main h3 a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.geo-company__lesson-keyword {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  font-weight: 600;
}

.geo-company__lesson-main p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.geo-company__lesson-meta {
  flex-shrink: 0;
  display: grid;
  gap: 10px;
  justify-items: end;
  align-content: center;
  color: #64748b;
  font-size: 13px;
}

.geo-company__lesson-meta a {
  color: #4338ca;
  font-weight: 600;
  text-decoration: none;
}

.geo-company__lesson-meta a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .geo-company__tab-nav {
    border-radius: 12px;
  }

  .geo-company .archive-detail-fields.cols-2 {
    grid-template-columns: 1fr;
  }

  .geo-archive-tab-panel {
    padding: 18px 16px;
  }

  .geo-company__lesson-card {
    flex-direction: column;
  }

  .geo-company__lesson-meta {
    justify-items: start;
  }
}

/* GEO company knowledge list */
.geo-company-list__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 28px 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.geo-company-list__hero .geo-article__title {
  margin-bottom: 10px;
}

.geo-company-list__hero .geo-article__summary {
  margin: 0;
}

.geo-company-list__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 420px);
}

.geo-company-list__search input[type="search"] {
  flex: 1;
  min-width: 220px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fbff;
  font-size: 14px;
  outline: none;
}

.geo-company-list__search input[type="search"]:focus {
  border-color: #4338ca;
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.12);
}

.geo-company-list__search button {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.geo-company-list__reset {
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
}

.geo-company-list__reset:hover { color: #4338ca; }

.geo-company-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 13px;
}

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

.geo-company-card {
  min-height: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.geo-company-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  box-shadow: 0 16px 40px rgba(67, 56, 202, 0.12);
}

.geo-company-card__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.geo-company-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.geo-company-card__avatar {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.geo-company-card__logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  background: #f1f5f9;
}

.geo-company-card__logo--image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.geo-company-card__logo--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  color: #4338ca;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.geo-company-card__title-wrap h2 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.4;
  color: #0f172a;
}

.geo-company-card__title-wrap span {
  color: #64748b;
  font-size: 12px;
}

.geo-company-card__tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  font-weight: 600;
}

.geo-company-card__summary {
  flex: 1;
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.geo-company-card__cta {
  color: #4338ca;
  font-size: 13px;
  font-weight: 600;
}

.geo-company-list__empty {
  text-align: center;
}

.geo-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.geo-pagination__btn,
.geo-pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  text-decoration: none;
}

.geo-pagination__num.is-active {
  background: #4338ca;
  border-color: #4338ca;
  color: #fff;
}

.geo-pagination__btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 1200px) {
  .geo-company-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .geo-company-list__hero {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
  }

  .geo-company-list__search {
    min-width: 0;
  }

  .geo-company-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .geo-company-list__search input[type="search"] {
    min-width: 0;
    width: 100%;
  }

  .geo-company-list__search button,
  .geo-company-list__search input[type="search"] {
    width: 100%;
  }
}

/* GEO AI article list page */
.geo-article-list__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 28px 30px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.geo-article-list__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 360px);
}

.geo-article-list__search input[type="search"] {
  flex: 1 1 220px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
}

.geo-article-list__search input[type="search"]:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.geo-article-list__search button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #4338ca, #6366f1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.geo-article-list__reset {
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
}

.geo-article-list__reset:hover { color: #4338ca; }

.geo-article-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 13px;
}

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

.geo-article-card {
  min-height: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.geo-article-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  box-shadow: 0 16px 40px rgba(67, 56, 202, 0.12);
}

.geo-article-card__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.geo-article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.geo-article-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.geo-article-card__tag--accent {
  background: #eef2ff;
  color: #4338ca;
}

.geo-article-card__link h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #0f172a;
}

.geo-article-card__summary {
  flex: 1;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.geo-article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: #94a3b8;
}

.geo-article-card__cta {
  color: #4338ca;
  font-weight: 700;
}

.geo-article-list__empty {
  text-align: center;
}

@media (max-width: 1200px) {
  .geo-article-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .geo-article-list__hero {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
  }

  .geo-article-list__search {
    min-width: 0;
  }

  .geo-article-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .geo-article-list__search input[type="search"],
  .geo-article-list__search button {
    width: 100%;
  }
}

