:root {
  --bg: #e6edf6;
  --bg-soft: #dce6f1;
  --surface: rgba(248, 251, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.84);
  --line: rgba(53, 74, 105, 0.12);
  --text: #10253f;
  --muted: #60748f;
  --brand: #5b72ff;
  --brand-deep: #4460eb;
  --teal: #0fb9b1;
  --ink: #0c1a2f;
  --shadow: 0 24px 70px rgba(15, 30, 58, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(91, 114, 255, 0.16), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(15, 185, 177, 0.10), transparent 22%),
    linear-gradient(180deg, #edf3f9 0%, #dfe8f2 100%);
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(75px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: -8rem;
  right: -8rem;
  background: rgba(91, 114, 255, 0.16);
}

.site-shell::after {
  bottom: -8rem;
  left: -8rem;
  background: rgba(84, 140, 255, 0.12);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(232, 239, 247, 0.72);
  border-bottom: 1px solid rgba(53, 74, 105, 0.08);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 10px 30px rgba(15, 30, 58, 0.05);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.brand-logo img {
  width: 158px;
  height: auto;
  display: block;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #3b82f6);
  box-shadow: 0 16px 34px rgba(10, 99, 255, 0.22);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-link.active,
.nav-link:hover,
.nav-trigger:hover {
  color: var(--brand-deep);
}

.nav-group {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(246, 249, 253, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

@media (min-width: 1025px) {
  .nav-group:hover .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.nav-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a:hover {
  background: var(--bg-soft);
  color: var(--brand-deep);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(244, 248, 252, 0.9);
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #7387ff);
  box-shadow: 0 18px 36px rgba(91, 114, 255, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(233, 240, 248, 0.78);
  border-color: var(--line);
}

.hero,
.page-hero {
  padding: 84px 0 52px;
}

.hero-grid,
.page-hero-grid,
.grid-2,
.grid-3,
.grid-4,
.feature-grid,
.showcase-grid,
.contact-grid,
.article-grid,
.product-card-grid {
  display: grid;
  gap: 24px;
}

.hero-grid,
.page-hero-grid,
.grid-2,
.showcase-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.feature-grid,
.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.product-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow,
.section-kicker {
  display: none !important;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(10, 99, 255, 0.10);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-kicker {
  margin-bottom: 12px;
}

.lang-switcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(91, 114, 255, 0.14);
  border-radius: 999px;
  background: rgba(11, 27, 53, 0.88);
  box-shadow: 0 18px 44px rgba(11, 27, 53, 0.28);
  backdrop-filter: blur(18px);
}

.lang-switcher__button {
  min-width: 64px;
  height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(226, 232, 240, 0.82);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switcher__button:hover {
  transform: translateY(-1px);
  color: #fff;
}

.lang-switcher__button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #7387ff);
  box-shadow: 0 12px 24px rgba(91, 114, 255, 0.28);
}

.lang-switcher__button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 640px) {
  .lang-switcher {
    right: 14px;
    bottom: 14px;
    gap: 6px;
    padding: 6px;
  }

  .lang-switcher__button {
    min-width: 58px;
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}

.hero h1,
.page-hero h1,
.section h2 {
  margin: 18px 0 14px;
  letter-spacing: -0.05em;
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
}

.section h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.hero p,
.page-hero p,
.lead,
.section p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.panel,
.card,
.metric,
.product-card,
.contact-card,
.article-card,
.footer-card,
.visual-panel,
.timeline,
.logo-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel,
.card,
.contact-card,
.article-card,
.product-card {
  padding: 26px;
}

.hero-visual,
.page-visual {
  min-height: 560px;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
}

.visual-panel.deep {
  background:
    radial-gradient(circle at 10% 20%, rgba(13, 78, 216, 0.24), transparent 30%),
    linear-gradient(180deg, #10213f 0%, #0a1730 100%);
  color: #fff;
}

.visual-panel.deep p {
  color: rgba(255, 255, 255, 0.76);
}

.visual-orbit,
.visual-stack,
.visual-grid,
.visual-badges {
  position: absolute;
}

.visual-orbit {
  inset: 12% 10% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: inset 0 0 0 30px rgba(255, 255, 255, 0.02);
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.visual-orbit::after {
  inset: 52px;
}

.visual-grid {
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.visual-card strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.page-visual .visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section {
  padding: 32px 0 96px;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.logo-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.logo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 128px;
  padding: 18px 12px;
}

.logo-card img {
  max-width: 145px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-card.compact img {
  max-width: 96px;
}

.logo-card strong {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.metric {
  padding: 24px;
}

.feature-grid .card h3,
.showcase-copy h3,
.product-card h3,
.contact-card h3,
.article-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--brand-deep);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(10, 99, 255, 0.12), rgba(15, 185, 177, 0.12));
}

.list-clean,
.check-list,
.article-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
}

.showcase-copy {
  padding-right: 10px;
}

.showcase-copy p {
  margin-bottom: 20px;
}

.ghost-block {
  position: absolute;
  inset: auto auto 26px 26px;
  width: 42%;
  height: 160px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.ghost-block::before,
.ghost-block::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.ghost-block::before {
  top: 26px;
}

.ghost-block::after {
  top: 56px;
  right: 44px;
}

.ghost-lines {
  position: absolute;
  top: 30px;
  right: 28px;
  width: 34%;
}

.ghost-lines span {
  display: block;
  height: 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.ghost-lines span:nth-child(2) {
  width: 82%;
}

.ghost-lines span:nth-child(3) {
  width: 68%;
}

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

.product-nav-item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(247, 250, 255, 0.72);
}

.product-nav-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

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

.contact-form .span-2 {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(15, 32, 63, 0.12);
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.88);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.article-card .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.article-card .article-meta li {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
}

.footer {
  padding: 34px 0 62px;
}

.footer-card {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: start;
  padding: 34px;
  color: #fff;
  background: linear-gradient(180deg, #0e1d39 0%, #0a1730 100%);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(6, 18, 42, 0.20);
}

.footer-card h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.footer-card p,
.footer-card a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-card p {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 14px 26px;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: end;
  align-content: center;
}

.footer-links a {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.footer > .container > .muted {
  display: block;
  margin-top: 30px !important;
  text-align: center;
  letter-spacing: -0.02em;
  color: #677b97;
}

.legal-hero {
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(87, 190, 255, 0.16), transparent 28%),
    radial-gradient(circle at 14% 24%, rgba(10, 99, 255, 0.18), transparent 32%);
  pointer-events: none;
}

.legal-shell {
  display: grid;
  gap: 24px;
}

.legal-summary {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: stretch;
}

.legal-overview,
.legal-panel,
.legal-block {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(15, 32, 63, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 255, 0.92) 100%);
  box-shadow: 0 22px 60px rgba(17, 39, 76, 0.08);
}

.legal-overview h2,
.legal-panel h3,
.legal-block h3 {
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.legal-overview p,
.legal-panel p,
.legal-block p,
.legal-block li,
.legal-block dd {
  color: var(--muted);
  line-height: 1.8;
}

.legal-overview p:last-child,
.legal-panel p:last-child,
.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-facts {
  display: grid;
  gap: 12px;
}

.legal-fact {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(233, 241, 255, 0.72);
  border: 1px solid rgba(10, 99, 255, 0.08);
}

.legal-fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 108px;
}

.legal-nav {
  display: grid;
  gap: 10px;
}

.legal-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 700;
  background: rgba(244, 248, 255, 0.88);
  border: 1px solid rgba(15, 32, 63, 0.08);
}

.legal-main {
  display: grid;
  gap: 18px;
}

.legal-block ol,
.legal-block ul {
  margin: 0;
  padding-left: 20px;
}

.legal-block li + li {
  margin-top: 10px;
}

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

.legal-highlight {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10, 99, 255, 0.09), rgba(15, 185, 177, 0.10));
  border: 1px solid rgba(10, 99, 255, 0.10);
}

.legal-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 15px;
}

.legal-note {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(14, 29, 57, 0.04);
  border: 1px solid rgba(15, 32, 63, 0.08);
}

@media (max-width: 980px) {
  .legal-summary,
  .legal-layout,
  .legal-subgrid {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

}

@media (max-width: 640px) {
  .legal-overview,
  .legal-panel,
  .legal-block {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .legal-nav a {
    font-size: 13px;
  }
}

.muted {
  color: var(--muted);
}

.mini-grid,
.decision-grid,
.badge-row,
.timeline-lite,
.spotlight-grid {
  display: grid;
  gap: 24px;
}

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

.decision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.badge-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-lite {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.badge-tile,
.accent-panel,
.timeline-lite .panel,
.decision-grid .panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 250, 255, 0.76);
  box-shadow: var(--shadow);
}

.badge-tile {
  padding: 22px;
}

.badge-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.accent-panel {
  padding: 30px;
  background: linear-gradient(135deg, rgba(10, 99, 255, 0.08), rgba(15, 185, 177, 0.06));
}

.accent-panel h3 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.timeline-lite .panel,
.decision-grid .panel {
  padding: 22px;
}

.timeline-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(10, 99, 255, 0.12);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

.surface-dark {
  color: #fff;
  background: linear-gradient(180deg, #0f2142 0%, #0b1730 100%);
}

.surface-dark p,
.surface-dark li,
.surface-dark h3,
.surface-dark h4 {
  color: rgba(255, 255, 255, 0.84);
}

.hero-note {
  max-width: 720px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 99, 255, 0.12);
  border-radius: 20px;
  background: rgba(245, 249, 255, 0.74);
  color: var(--muted);
}

.stat-grid,
.story-grid,
.detail-grid,
.persona-grid {
  display: grid;
  gap: 24px;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-grid,
.detail-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.persona-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-card,
.quote-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 250, 255, 0.76);
  box-shadow: var(--shadow);
}

.split-card h3,
.quote-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

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

.stack-list .panel {
  padding: 22px;
}

.stack-list .panel h4,
.table-lite h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.table-lite {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 250, 255, 0.76);
  box-shadow: var(--shadow);
}

.table-lite table {
  width: 100%;
  border-collapse: collapse;
}

.table-lite th,
.table-lite td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 32, 63, 0.08);
  vertical-align: top;
}

.table-lite th {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table-lite td {
  color: var(--muted);
  line-height: 1.75;
}

.table-lite tr:last-child td {
  border-bottom: 0;
}

.quote-card {
  color: #fff;
  background: linear-gradient(180deg, #0f2142 0%, #0b1730 100%);
}

.quote-card p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
  font-weight: 800;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(10, 99, 255, 0.08), rgba(15, 185, 177, 0.08));
}

.cta-strip h3 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.visual-panel.aws {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 179, 71, 0.20), transparent 24%),
    linear-gradient(180deg, #10233f 0%, #111827 100%);
  color: #fff;
}

.visual-panel.do {
  background:
    radial-gradient(circle at 20% 20%, rgba(71, 140, 255, 0.28), transparent 28%),
    linear-gradient(180deg, #0f2a54 0%, #11284a 100%);
  color: #fff;
}

.visual-panel.gcp {
  background:
    radial-gradient(circle at 18% 18%, rgba(52, 168, 83, 0.16), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(66, 133, 244, 0.18), transparent 22%),
    linear-gradient(180deg, #0f2142 0%, #112846 100%);
  color: #fff;
}

.visual-panel.ovh {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 75, 255, 0.24), transparent 24%),
    linear-gradient(180deg, #09152e 0%, #10203d 100%);
  color: #fff;
}

.visual-panel.linode {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 190, 120, 0.18), transparent 24%),
    linear-gradient(180deg, #0d1e34 0%, #11253d 100%);
  color: #fff;
}

.visual-panel.oracle {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 84, 84, 0.20), transparent 24%),
    linear-gradient(180deg, #1e1820 0%, #251924 100%);
  color: #fff;
}

.visual-panel.azure {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 120, 212, 0.24), transparent 24%),
    linear-gradient(180deg, #0e1f39 0%, #10284b 100%);
  color: #fff;
}

.visual-panel.aws p,
.visual-panel.do p,
.visual-panel.gcp p,
.visual-panel.ovh p,
.visual-panel.linode p,
.visual-panel.oracle p,
.visual-panel.azure p {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1024px) {
  .nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-group:hover .nav-menu {
    opacity: 0;
    pointer-events: none;
  }

  .nav-group.open .nav-menu {
    position: static;
    margin-top: 8px;
    min-width: 100%;
    opacity: 1;
    pointer-events: auto;
  }

  .topbar-inner {
    gap: 24px;
    min-height: 82px;
  }

  .brand-logo img {
    width: 158px;
  }

  .nav-actions {
    gap: 12px;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex-shrink: 0;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stat-grid,
  .story-grid,
  .detail-grid,
  .persona-grid,
  .mini-grid,
  .decision-grid,
  .badge-row,
  .timeline-lite,
  .spotlight-grid,
  .feature-grid,
  .showcase-grid,
  .contact-grid,
  .article-grid,
  .product-card-grid,
  .logo-strip,
  .footer-card,
  .product-nav-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-visual,
  .visual-panel {
    min-height: 420px;
  }

  .footer-card {
    padding: 28px 24px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }

  .footer > .container > .muted {
    margin-top: 24px !important;
  }

  .visual-grid,
  .page-visual .visual-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    min-height: 74px;
  }

  .brand-logo img {
    width: 132px;
  }

  .footer-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .footer-card p,
  .footer-links a {
    font-size: 15px;
  }

  .hero,
  .page-hero {
    padding-top: 56px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .span-2 {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer > .container > .muted {
    margin-top: 22px !important;
  }
}
