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

html {
  scroll-behavior: smooth;
}

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

:root {
  --km-blue: #4f6fff;
  --km-purple: #7a56ff;
  --km-cyan: #38d8ff;
  --km-lime: #d7ff57;
  --km-orange: #ff8b5e;
  --km-yellow: #ffd45f;
  --km-ink: #203a5e;
  --km-font-display: "Manrope", "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --km-font-body: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(122, 86, 255, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(56, 216, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
  color: #203a5e;
  font-family: var(--km-font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02" 1, "cv03" 1, "ss01" 1, "tnum" 1;
}

h1,
h2,
h3,
h4,
.button,
.eyebrow,
.pill,
.tag,
.tw-section-eyebrow,
.tw-value-label,
.news-meta {
  font-family: var(--km-font-display);
}

a {
  text-decoration: none;
}

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

.managed-hero-image,
.managed-about-image {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(111, 145, 214, 0.12);
  box-shadow: 0 10px 28px rgba(85, 119, 188, 0.08);
}

.managed-about-image {
  margin-bottom: 24px;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1600px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  z-index: 1;
  padding: 104px 0;
}

.section-tone-white,
.section-tone-blue {
  position: relative;
}

.section-tone-white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 253, 255, 0.98) 100%);
}

.section-tone-blue {
  background:
    radial-gradient(circle at top left, rgba(137, 180, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(173, 215, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #eef5ff 0%, #dfeeff 100%);
}

.section-tone-white::before,
.section-tone-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(103, 142, 214, 0.08);
}

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

.background-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.22;
}

.glow-one {
  top: -80px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(135, 180, 255, 0.18), rgba(135, 180, 255, 0));
  animation: floatGlow 12s ease-in-out infinite;
}

.glow-two {
  left: -100px;
  top: 18%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(184, 214, 255, 0.18), rgba(184, 214, 255, 0));
  animation: floatGlow 16s ease-in-out infinite reverse;
}

.grid-mask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(165, 186, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 186, 220, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 70%);
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 22px, 0) scale(1.04);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(90, 139, 232, 0.18);
  border-radius: 999px;
  background: rgba(76, 118, 222, 0.08);
  color: #4c6fde;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--km-blue) 0%, var(--km-purple) 100%);
  color: #fff;
  box-shadow:
    0 10px 0 rgba(59, 84, 196, 0.92),
    0 18px 28px rgba(79, 111, 255, 0.25);
}

.button-primary:active {
  box-shadow:
    0 4px 0 rgba(59, 84, 196, 0.92),
    0 8px 16px rgba(79, 111, 255, 0.2);
}

.button-secondary {
  border-color: rgba(76, 111, 222, 0.16);
  background: #ffffff;
  color: #3a5cc7;
  box-shadow:
    0 8px 0 rgba(216, 227, 255, 0.95),
    0 14px 22px rgba(76, 111, 222, 0.08);
}

.button-secondary:active {
  box-shadow:
    0 3px 0 rgba(216, 227, 255, 0.95),
    0 8px 14px rgba(76, 111, 222, 0.08);
}

.text-link {
  color: #4c6fde;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(76, 111, 222, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

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

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

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

.nav-link {
  padding: 12px 16px;
  border-radius: 999px;
  color: #36506b;
  font-size: 16px;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(76, 111, 222, 0.08);
  color: #23427b;
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(76, 111, 222, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: #fff;
}

.hero-section {
  padding: 34px 0 26px;
}

.home-playful-hero {
  min-height: calc(100svh - 84px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
}

.hero-grid.enhanced {
  align-items: center;
}

.hero-copy {
  max-width: 900px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-text,
.page-hero p,
.section-heading p,
.product-card p,
.compare-card p,
.scenario-card p,
.about-card p,
.timeline-item p,
.detail-card p,
.contact-card p,
.consult-form p {
  color: #667a96;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

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

.hero-visual {
  position: relative;
}

.stat-card,
.hero-panel-card,
.product-card,
.compare-card,
.scenario-card,
.detail-card,
.about-card,
.contact-card,
.consult-form,
.cta-panel,
.news-card,
.news-row,
.hero-dashboard,
.insight-panel,
.value-card {
  border: 1px solid rgba(111, 145, 214, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 28px rgba(85, 119, 188, 0.08);
}

.glass-card {
  backdrop-filter: blur(14px);
}

.stat-card {
  padding: 28px;
}

.stat-card-compact {
  min-height: 136px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #203a5e;
  font-size: 32px;
}

.stat-card span {
  color: #6f86a6;
}

.hero-dashboard {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(128, 173, 255, 0.1), transparent 38%),
    radial-gradient(circle at bottom left, rgba(76, 111, 222, 0.06), transparent 42%);
  pointer-events: none;
}

.dashboard-header,
.metric-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-header {
  margin-bottom: 18px;
  color: #4f6788;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(76, 111, 222, 0.08);
  color: #4c6fde;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.data-card {
  padding: 22px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid rgba(111, 145, 214, 0.12);
}

.data-card small,
.contact-label {
  display: block;
  color: #6c82a1;
  font-size: 13px;
  margin-bottom: 10px;
}

.data-card strong {
  display: block;
  color: #203a5e;
  font-size: 32px;
  line-height: 1;
}

.data-card span {
  display: inline-flex;
  margin-top: 10px;
  color: #4c6fde;
  font-size: 13px;
}

.bar-panel {
  display: grid;
  gap: 16px;
}

.metric-row {
  display: grid;
  gap: 8px;
}

.metric-meta {
  color: #4b607f;
  font-size: 14px;
}

.metric-track {
  height: 10px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
}

.metric-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #72a8ff 0%, #4c6fde 100%);
  box-shadow: 0 0 10px rgba(76, 111, 222, 0.12);
}

.double-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.hero-panel {
  display: flex;
}

.hero-panel-card {
  padding: 36px;
  width: 100%;
}

.panel-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #94a4f4;
  font-size: 14px;
  font-weight: 600;
}

.hero-panel-card h2,
.section-heading h2,
.detail-card h2,
.cta-panel h2,
.about-card h2,
.contact-card h2,
.consult-form h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature-list,
.compact-list,
.detail-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li,
.compact-list li,
.detail-list li {
  position: relative;
  padding-left: 24px;
  color: #425977;
  line-height: 1.7;
}

.feature-list li::before,
.compact-list li::before,
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7aa4f7 0%, #4c6fde 100%);
}

.section-heading {
  max-width: 1240px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 20px;
}

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

.product-card,
.compare-card,
.scenario-card,
.news-card {
  padding: 32px;
}

.product-card h3,
.compare-card h3,
.scenario-card h3,
.detail-card h3,
.about-card h3 {
  margin: 14px 0;
  font-size: 22px;
  line-height: 1.35;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(76, 111, 222, 0.08);
  color: #4c6fde;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.compare-section {
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.92) 0%, rgba(252, 253, 255, 0.98) 100%),
    #f8fbff;
}

.scenario-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 40px;
  align-items: start;
}

.scenario-list {
  display: grid;
  gap: 18px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
}

.premium-panel {
  position: relative;
  overflow: hidden;
}

.premium-panel::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 168, 255, 0.1), transparent 70%);
}

.page-hero {
  padding-top: 124px;
}

.page-hero p {
  max-width: 1180px;
}

.product-detail-stack {
  display: grid;
  gap: 24px;
}

.detail-card {
  padding: 38px;
}

.detail-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  margin-bottom: 32px;
}

.detail-grid,
.about-grid,
.contact-layout {
  display: grid;
  gap: 32px;
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.franchise-layout,
.news-list {
  display: grid;
  gap: 22px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.value-card {
  padding: 24px;
}

.value-card strong {
  display: block;
  margin-bottom: 8px;
  color: #203a5e;
  font-size: 22px;
}

.value-card span {
  color: #607692;
  line-height: 1.7;
}

.about-grid {
  grid-template-columns: 1fr 1.2fr;
}

.about-card {
  padding: 36px;
}

.about-list {
  display: grid;
  gap: 18px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(111, 145, 214, 0.12);
  background: #ffffff;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(76, 111, 222, 0.1);
  color: #3554b2;
  font-size: 24px;
  font-weight: 700;
}

.contact-layout {
  grid-template-columns: minmax(420px, 0.94fr) minmax(0, 1.06fr);
}

.contact-card,
.consult-form {
  padding: 36px;
}

.contact-detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 24px;
}

.contact-detail-grid strong {
  color: #203a5e;
  line-height: 1.7;
}

.contact-notes {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-head {
  margin-bottom: 18px;
}

.consult-form {
  display: grid;
  gap: 16px;
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: #36506b;
  font-size: 14px;
  font-weight: 500;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid rgba(111, 145, 214, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: #203a5e;
  padding: 14px 16px;
  font: inherit;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: #8f9ac1;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: 2px solid rgba(76, 111, 222, 0.16);
  border-color: rgba(76, 111, 222, 0.36);
}

.full-width {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #9eabd7;
}

.form-status.visible {
  color: #d7e4ff;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(76, 111, 222, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: auto;
  height: 42px;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  color: #7085a3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.advantage-stack,
.news-preview {
  display: grid;
  gap: 20px;
}

.floating-card {
  position: relative;
  overflow: hidden;
}

.floating-card::after {
  content: '';
  position: absolute;
  inset: auto -25% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 203, 255, 0.14), transparent 70%);
}

.card-index,
.news-meta {
  color: #4c6fde;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insight-panel {
  display: grid;
  place-items: center;
  gap: 26px;
  padding: 36px;
  min-height: 100%;
}

.insight-ring {
  display: grid;
  place-items: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 32%, rgba(0, 0, 0, 0) 33%),
    conic-gradient(from 0deg, #a9c5ff, #4c6fde, #a9c5ff);
  box-shadow:
    0 0 16px rgba(76, 111, 222, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.32);
  animation: spinRing 16s linear infinite;
}

.insight-ring > div {
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 0 0 1px rgba(76, 111, 222, 0.06);
}

.insight-ring strong {
  font-size: 42px;
  line-height: 1;
}

.insight-ring span {
  margin-top: 6px;
  color: #6c82a1;
}

.insight-copy {
  max-width: 420px;
  text-align: center;
}

.insight-copy h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.news-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.news-row h2,
.news-card h3 {
  margin: 14px 0 12px;
}

.hero-copy-wide {
  max-width: 920px;
}

.home-playful-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 212, 95, 0.24), transparent 20%),
    radial-gradient(circle at 92% 12%, rgba(122, 86, 255, 0.2), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(56, 216, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #f4f6ff 0%, #ebf5ff 100%);
}

.hero-audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.audience-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(92, 119, 255, 0.12);
  box-shadow: 0 10px 22px rgba(101, 118, 206, 0.1);
  color: #3852a8;
  font-size: 14px;
  font-weight: 700;
}

.hero-text-strong {
  max-width: 760px;
  color: #516b8e;
  font-size: 17px;
  line-height: 1.78;
}

.hero-company-summary {
  margin-top: 24px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.94)),
    #fff;
}

.hero-company-summary p {
  margin: 14px 0 0;
  color: #536b89;
  font-size: 18px;
  line-height: 1.95;
}

.home-hero-grid {
  align-items: center;
}

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

.hero-inline-metric {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(111, 145, 214, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(85, 119, 188, 0.08);
}

.hero-inline-metric strong {
  color: #203a5e;
  font-size: 28px;
  line-height: 1;
}

.hero-inline-metric span {
  color: #607697;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-inline-purple {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 255, 0.98));
}

.hero-inline-cyan {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 255, 0.98));
}

.hero-inline-orange {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 240, 0.98));
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.hero-trust-card,
.hero-side-card,
.overview-note,
.overview-card,
.audience-card,
.product-showcase-card,
.solution-metrics,
.journey-step,
.evidence-visual-card,
.news-list-item,
.conversion-card {
  border: 1px solid rgba(111, 145, 214, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 28px rgba(85, 119, 188, 0.08);
}

.hero-trust-card {
  position: relative;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
}

.hero-trust-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, rgba(92, 118, 255, 0.85), rgba(124, 220, 255, 0.6));
}

.hero-highlight-purple::after {
  background: linear-gradient(90deg, rgba(122, 86, 255, 0.9), rgba(183, 112, 255, 0.62));
}

.hero-highlight-cyan::after {
  background: linear-gradient(90deg, rgba(42, 160, 255, 0.88), rgba(84, 224, 255, 0.6));
}

.hero-highlight-orange::after {
  background: linear-gradient(90deg, rgba(255, 121, 72, 0.9), rgba(255, 191, 96, 0.65));
}

.hero-trust-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hero-trust-label {
  color: #58719d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-trust-metric {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-trust-card strong {
  display: block;
  color: #203a5e;
  font-size: 40px;
  line-height: 1;
}

.hero-trust-result {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(235, 242, 255, 0.9);
  color: #43618f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-trust-card h3 {
  margin: 0;
  color: #223c62;
  font-size: 21px;
  line-height: 1.35;
}

.hero-trust-card p {
  margin: 12px 0 0;
  color: #6a7f99;
  font-size: 15px;
  line-height: 1.8;
}

.hero-trust-focus {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(111, 145, 214, 0.14);
}

.hero-trust-focus span {
  color: #7a8ea9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust-focus strong {
  font-size: 15px;
  line-height: 1.7;
  color: #223c62;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 460px);
  justify-content: end;
  gap: 0;
  align-items: stretch;
}

.hero-summary-section {
  padding-top: 18px;
}

.hero-summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: start;
}

.hero-summary-main {
  display: grid;
  gap: 0;
}

.home-console {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.95)),
    #fff;
}

.hero-command-card,
.hero-side-card,
.overview-note,
.overview-card,
.audience-card,
.solution-metrics,
.journey-step,
.news-list-item,
.conversion-card {
  padding: 30px;
}

.hero-command-card {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(137, 107, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 255, 0.98));
}

.hero-command-card h3 {
  margin: 10px 0 0;
  font-size: 30px;
  line-height: 1.24;
}

.hero-command-card p {
  margin: 14px 0 0;
  color: #667a96;
  font-size: 16px;
  line-height: 1.8;
}

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

.hero-quick-fact {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 145, 214, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.hero-quick-fact small {
  display: block;
  margin-bottom: 8px;
  color: #7084a1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-quick-fact strong {
  color: #203a5e;
  font-size: 14px;
  line-height: 1.6;
}

.hero-company-summary {
  padding: 30px;
}

.hero-company-summary p + p {
  margin-top: 12px;
}

.hero-value-strip {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(111, 145, 214, 0.12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 28px rgba(85, 119, 188, 0.08);
}

.hero-value-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.08);
  color: #3f5db0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-value-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--km-blue), var(--km-orange));
  flex: 0 0 auto;
}

.card-kicker,
.mini-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c6fde;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-inline-top,
.card-head-cluster,
.card-stack-head,
.card-stack-head-compact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-head-cluster {
  gap: 12px;
}

.card-stack-head {
  align-items: flex-start;
  margin-bottom: 14px;
}

.card-stack-head-compact {
  margin-bottom: 12px;
}

.card-title-wrap {
  display: grid;
  gap: 2px;
}

.card-title-wrap h3,
.card-title-wrap .news-meta,
.card-title-wrap .card-kicker {
  margin: 0;
}

.card-icon-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #3554b2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 26px rgba(73, 103, 177, 0.14);
}

.card-icon-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.card-icon-badge::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.tone-blue {
  background: linear-gradient(135deg, rgba(103, 136, 255, 0.18), rgba(79, 111, 255, 0.08));
}

.tone-purple {
  color: #6d4eff;
  background: linear-gradient(135deg, rgba(122, 86, 255, 0.2), rgba(167, 132, 255, 0.08));
}

.tone-cyan {
  color: #1f8cb7;
  background: linear-gradient(135deg, rgba(56, 216, 255, 0.2), rgba(112, 234, 255, 0.08));
}

.tone-orange {
  color: #d25f2d;
  background: linear-gradient(135deg, rgba(255, 139, 94, 0.22), rgba(255, 212, 95, 0.1));
}

.tone-lime {
  color: #5a7d00;
  background: linear-gradient(135deg, rgba(215, 255, 87, 0.28), rgba(244, 255, 180, 0.1));
}

.hero-side-card h3,
.overview-note h3,
.overview-card h3,
.solution-metrics h3,
.journey-step h3,
.evidence-copy h3,
.news-list-item h3,
.conversion-card h3 {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.28;
}

.hero-side-card p,
.overview-note p,
.overview-card p,
.solution-metrics p,
.journey-step p,
.evidence-copy p,
.news-list-item p,
.conversion-card p {
  margin-top: 14px;
  color: #667a96;
  font-size: 17px;
  line-height: 1.9;
}

.hero-side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.mini-contact-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.mini-contact-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 145, 214, 0.12);
  background: #f7faff;
}

.mini-contact-item small {
  display: block;
  margin-bottom: 8px;
  color: #6c82a1;
  font-size: 13px;
}

.mini-contact-item strong {
  color: #203a5e;
  line-height: 1.65;
}

.tilt-card {
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  --pointer-x: 50%;
  --pointer-y: 50%;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.tilt-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.72), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.tilt-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 20px 42px rgba(85, 119, 188, 0.14);
}

.tilt-card:hover::before {
  opacity: 1;
}

.card-variant-violet {
  background:
    radial-gradient(circle at top right, rgba(137, 107, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 255, 0.98));
}

.card-variant-cyan {
  background:
    radial-gradient(circle at top left, rgba(56, 216, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 252, 255, 0.98));
}

.card-variant-lime {
  background:
    radial-gradient(circle at top right, rgba(215, 255, 87, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 255, 241, 0.98));
}

.card-variant-sunrise {
  background:
    radial-gradient(circle at top left, rgba(255, 180, 95, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 240, 0.98));
}

.card-variant-candy {
  background:
    radial-gradient(circle at top right, rgba(122, 86, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 139, 94, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 255, 0.98));
}

.card-variant-mist {
  background:
    radial-gradient(circle at top left, rgba(112, 168, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.98));
}

.card-variant-product {
  background:
    radial-gradient(circle at top right, rgba(122, 86, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(56, 216, 255, 0.1), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
}

.card-variant-path {
  background:
    radial-gradient(circle at top left, rgba(79, 111, 255, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 32px;
  align-items: start;
}

.audience-layout {
  display: grid;
  gap: 28px;
}

.audience-copy {
  max-width: 1240px;
}

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

.audience-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.audience-card {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96)),
    #fff;
}

.audience-card .compact-list {
  margin-top: 18px;
}

.overview-copy {
  display: grid;
  gap: 22px;
}

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

.overview-index,
.journey-index,
.product-showcase-title .card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(76, 111, 222, 0.1);
  color: #3554b2;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.overview-card {
  min-height: 100%;
}

.product-showcase-list {
  display: grid;
  gap: 24px;
}

.product-showcase-card {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96)),
    #fff;
}

.product-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.product-showcase-title {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.product-showcase-title h3 {
  margin: 14px 0 0;
  font-size: 30px;
  line-height: 1.2;
}

.product-showcase-body {
  display: grid;
  gap: 24px;
}

.product-showcase-summary {
  margin: 0;
  color: #536b89;
  font-size: 18px;
  line-height: 1.9;
}

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

.product-showcase-card .compact-list {
  margin-top: 18px;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: start;
}

.solution-sidebar {
  display: grid;
  gap: 24px;
}

.journey-flow {
  display: grid;
  gap: 18px;
}

.journey-step {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  align-items: start;
}

.journey-badge {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  align-items: start;
}

.evidence-visual-card {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.evidence-scene-image {
  width: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.evidence-copy {
  padding: 0 12px 6px;
}

.news-preview-panel {
  display: grid;
  gap: 22px;
}

.news-list-compact {
  display: grid;
  gap: 18px;
}

.conversion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 32px;
  align-items: stretch;
}

.home-cta-panel {
  min-height: 100%;
}

.section-title-split .word,
.hero-title-split .word {
  display: inline-block;
  overflow: hidden;
}

body.home {
  background: #f3f7ff;
  color: #1a3154;
}

body.home .background-decor {
  display: none;
}

body.home .site-header {
  position: sticky;
  top: 0;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(76, 111, 222, 0.08);
  box-shadow: 0 10px 26px rgba(52, 86, 168, 0.05);
}

body.home .nav-bar {
  min-height: 78px;
}

body.home .brand-logo {
  height: 46px;
}

body.home .site-nav {
  gap: 8px;
}

body.home .nav-link {
  padding: 10px 14px;
  color: #3a557c;
  font-size: 15px;
  font-weight: 500;
}

body.home .nav-link:hover,
body.home .nav-link.active {
  background: rgba(76, 111, 222, 0.08);
  color: #3457b7;
}

body.home .button-primary {
  background: linear-gradient(135deg, #4f6fff 0%, #5b8cff 100%);
  box-shadow:
    0 10px 0 rgba(55, 84, 196, 0.92),
    0 18px 28px rgba(79, 111, 255, 0.22);
}

body.home .button-primary:active {
  box-shadow:
    0 4px 0 rgba(55, 84, 196, 0.92),
    0 8px 16px rgba(79, 111, 255, 0.18);
}

body.home .button-secondary {
  border-color: rgba(76, 111, 222, 0.14);
  color: #3058c5;
  box-shadow:
    0 8px 0 rgba(226, 235, 255, 0.98),
    0 14px 22px rgba(76, 111, 222, 0.06);
}

.tw-home {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(102, 149, 255, 0.12), transparent 22%),
    radial-gradient(circle at 8% 18%, rgba(165, 204, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #f3f7ff 0%, #f8fbff 100%);
}

.tw-home-banner {
  background: linear-gradient(90deg, #4667f7 0%, #5f96ff 100%);
}

.tw-home-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
}

.tw-home-banner p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tw-banner-prefix {
  opacity: 0.78;
}

.tw-home-banner p strong {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tw-home-hero {
  padding: 54px 0 72px;
  overflow: hidden;
  background: transparent;
}

.tw-home-hero::before,
.tw-home-hero::after {
  display: none;
}

.tw-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 36px;
  align-items: center;
}

.tw-hero-copy {
  max-width: 640px;
}

.tw-hero-kicker-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tw-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(79, 111, 255, 0.12);
  color: #4363a4;
  font-size: 13px;
  font-weight: 600;
}

.tw-hero-title {
  margin: 0;
  color: #18345b;
  font-size: clamp(42px, 6vw, 72px);
  font-family: var(--km-font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.tw-hero-title-lead {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.tw-hero-title-main {
  display: inline-block;
  color: #163a68;
}

.tw-hero-title-secondary {
  display: inline-block;
  margin-top: 10px;
  color: #3d5e97;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.tw-keyword {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  color: #4f6fff;
}

.tw-keyword::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.22em;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.14);
  z-index: -1;
}

.tw-hero-title-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.28em;
  height: 1.28em;
  border-radius: 50%;
  box-shadow:
    0 14px 34px rgba(79, 111, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tw-hero-title-icon svg {
  width: 100%;
  height: 100%;
}

.tw-hero-title span {
  color: #4f6fff;
}

.tw-hero-desc {
  max-width: 600px;
  margin: 24px 0 0;
  color: #657b9d;
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.tw-copy-emphasis {
  color: #244883;
  font-weight: 700;
}

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

.tw-hero-submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.tw-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 24px;
}

.tw-hero-metric {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(76, 111, 222, 0.1);
  box-shadow: 0 16px 32px rgba(55, 87, 156, 0.08);
}

.tw-hero-metric strong {
  display: block;
  color: #214275;
  font-size: 28px;
  line-height: 1;
}

.tw-hero-metric span {
  display: block;
  margin-top: 8px;
  color: #6a81a3;
  font-size: 13px;
  font-weight: 700;
}

.tw-hero-submeta span {
  position: relative;
  padding-left: 16px;
  color: #55709c;
  font-size: 14px;
  font-weight: 600;
}

.tw-hero-submeta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f6fff;
}

.tw-hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  perspective: 1400px;
}

.tw-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.tw-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(76, 111, 222, 0.1);
  color: #56709b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tw-orbit-card {
  position: relative;
  width: min(100%, 620px);
  min-height: 520px;
  padding: 28px 28px 20px;
  border-radius: 40px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.99) 0%, rgba(244, 247, 255, 0.98) 66%, rgba(230, 239, 255, 0.98) 100%);
  border: 1px solid rgba(76, 111, 222, 0.08);
  box-shadow:
    0 36px 80px rgba(55, 87, 156, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.tw-orbit-bg {
  position: relative;
  min-height: 450px;
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(208, 225, 255, 0.72) 0%, rgba(243, 248, 255, 0.5) 46%, rgba(255, 255, 255, 0) 70%);
  overflow: hidden;
}

.tw-orbit-media-shell {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.tw-orbit-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(242, 246, 255, 0.14) 0%, rgba(242, 246, 255, 0.56) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.38));
  pointer-events: none;
}

.tw-orbit-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tw-orbit-ring,
.tw-orbit-dot {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.tw-orbit-ring {
  border: 1px dashed rgba(79, 111, 255, 0.22);
}

.tw-orbit-ring-1 {
  width: 390px;
  height: 390px;
}

.tw-orbit-ring-2 {
  width: 296px;
  height: 296px;
}

.tw-orbit-ring-3 {
  width: 200px;
  height: 200px;
}

.tw-orbit-dot {
  width: 12px;
  height: 12px;
  background: #5b8cff;
  box-shadow: 0 0 0 8px rgba(91, 140, 255, 0.14);
}

.tw-orbit-dot-1 {
  margin-top: -170px;
}

.tw-orbit-dot-2 {
  margin-left: 138px;
  margin-top: 114px;
}

.tw-orbit-dot-3 {
  margin-left: -150px;
  margin-top: 86px;
}

.tw-person-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: clamp(220px, 42%, 276px);
  padding: 14px 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(76, 111, 222, 0.08);
  box-shadow: 0 22px 38px rgba(54, 85, 155, 0.12);
}

.tw-person-chip i {
  display: inline-flex;
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-radius: 50%;
  background: #4f6fff;
  box-shadow: 0 0 0 6px rgba(79, 111, 255, 0.12);
}

.tw-person-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf3ff 0%, #dce8ff 100%);
  color: #3f66d6;
  font-size: 15px;
  font-weight: 700;
}

.tw-person-chip span {
  color: #223b63;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.tw-person-chip-1 {
  top: 40px;
  left: 36px;
}

.tw-person-chip-2 {
  top: 184px;
  right: 24px;
}

.tw-person-chip-3 {
  left: 90px;
  bottom: 42px;
}

.tw-orbit-caption {
  margin: 18px 0 0;
  text-align: center;
  color: #61799d;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tw-floating-service {
  position: fixed;
  right: 18px;
  top: 220px;
  z-index: 36;
  display: grid;
  gap: 12px;
  width: 110px;
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(76, 111, 222, 0.1);
  box-shadow: 0 16px 34px rgba(52, 86, 168, 0.12);
}

.tw-floating-service p {
  margin: 0;
  color: #466391;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}

.tw-fake-qr {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(79, 111, 255, 0.08) 50%, transparent 50%) 0 0 / 12px 12px,
    linear-gradient(rgba(79, 111, 255, 0.08) 50%, transparent 50%) 0 0 / 12px 12px,
    #fff;
  border: 1px solid rgba(79, 111, 255, 0.12);
}

.tw-flat-section,
.tw-split-section,
.tw-cta-section {
  position: relative;
  padding: 84px 0;
}

.tw-section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.tw-section-heading-left {
  margin-bottom: 28px;
}

.tw-section-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.1);
  color: #3f64d8;
  font-size: 13px;
  font-weight: 700;
}

.tw-section-heading h2 {
  margin: 16px 0 0;
  color: #1c365e;
  font-size: clamp(30px, 4.2vw, 48px);
  font-family: var(--km-font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.tw-section-heading p {
  margin: 16px 0 0;
  color: #6b809f;
  font-size: 17px;
  line-height: 1.92;
  max-width: 62ch;
}

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

.tw-upgrade-card,
.tw-company-panel,
.tw-audience-card,
.tw-product-card,
.tw-step-card,
.tw-news-card,
.tw-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(76, 111, 222, 0.08);
  box-shadow: 0 18px 40px rgba(52, 86, 168, 0.08);
}

.tw-upgrade-card {
  padding: 26px;
}

.tw-card-topline {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(79, 111, 255, 0), rgba(79, 111, 255, 0.92), rgba(91, 140, 255, 0.28));
}

.tw-card-headline,
.tw-product-badges,
.tw-step-badge,
.tw-value-top,
.tw-news-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tw-card-headline {
  justify-content: space-between;
}

.tw-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(79, 111, 255, 0.08);
}

.tw-card-meta span,
.tw-step-label,
.tw-value-signal,
.tw-product-highlight,
.tw-news-tag {
  color: #6680a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tw-card-meta strong {
  color: #3158be;
  font-size: 15px;
  font-weight: 800;
}

.tw-upgrade-card-blue {
  background:
    radial-gradient(circle at top right, rgba(91, 140, 255, 0.16), transparent 28%),
    #fff;
}

.tw-upgrade-card-purple {
  background:
    radial-gradient(circle at top right, rgba(122, 86, 255, 0.14), transparent 28%),
    #fff;
}

.tw-upgrade-card-cyan {
  background:
    radial-gradient(circle at top right, rgba(56, 216, 255, 0.14), transparent 28%),
    #fff;
}

.tw-upgrade-card-orange {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 94, 0.14), transparent 28%),
    #fff;
}

.tw-upgrade-card small,
.tw-product-head small,
.tw-step-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79, 111, 255, 0.1);
  color: #446ae0;
  font-size: 15px;
  font-weight: 700;
}

.tw-upgrade-card h3,
.tw-audience-card h3,
.tw-product-card h3,
.tw-step-card h3,
.tw-news-card h3 {
  margin: 18px 0 0;
  color: #20395f;
  font-size: 22px;
  font-family: var(--km-font-display);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.tw-upgrade-card p,
.tw-company-panel p,
.tw-product-card p,
.tw-step-card p,
.tw-news-card p,
.tw-cta-panel p {
  margin: 12px 0 0;
  color: #6a7e9c;
  font-size: 16px;
  line-height: 1.9;
}

.tw-split-grid,
.tw-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 28px;
  align-items: start;
}

.tw-value-stack {
  display: grid;
  gap: 16px;
}

.tw-company-panel {
  padding: 34px;
}

.tw-company-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.tw-company-metric {
  padding: 18px 16px;
  border-radius: 20px;
  background: #f5f8ff;
  border: 1px solid rgba(79, 111, 255, 0.08);
}

.tw-company-metric strong {
  display: block;
  color: #1f3f6e;
  font-size: 26px;
  line-height: 1;
}

.tw-company-metric span {
  display: block;
  margin-top: 8px;
  color: #6b82a3;
  font-size: 13px;
  font-weight: 700;
}

.tw-value-stack,
.tw-steps-list,
.tw-news-list {
  display: grid;
  gap: 16px;
}

.tw-value-card,
.tw-news-card {
  padding: 24px 26px;
}

.tw-value-card {
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.98));
  border: 1px solid rgba(76, 111, 222, 0.08);
  box-shadow: 0 18px 40px rgba(52, 86, 168, 0.08);
}

.tw-value-card-purple {
  background:
    radial-gradient(circle at top right, rgba(122, 86, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 255, 0.98));
}

.tw-value-card-blue {
  background:
    radial-gradient(circle at top right, rgba(79, 111, 255, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.98));
}

.tw-value-card-cyan {
  background:
    radial-gradient(circle at top right, rgba(56, 216, 255, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.98));
}

.tw-value-top {
  justify-content: space-between;
}

.tw-value-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.1);
  color: #446ae0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tw-value-signal {
  padding: 0 12px;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 111, 255, 0.08);
}

.tw-value-card h3 {
  margin: 16px 0 0;
  color: #1f3c67;
  font-size: 22px;
  font-family: var(--km-font-display);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.tw-value-card p {
  margin-top: 12px;
  color: #69809f;
  font-size: 16px;
  line-height: 1.9;
}

.tw-value-bar {
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.08);
  overflow: hidden;
}

.tw-value-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f6fff 0%, #7aa4ff 100%);
}

.tw-products-section {
  padding-top: 88px;
}

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

.tw-product-card {
  padding: 28px;
}

.tw-product-card-purple {
  background:
    linear-gradient(180deg, rgba(248, 245, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.tw-product-card-blue {
  background:
    linear-gradient(180deg, rgba(243, 247, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.tw-product-card-cyan {
  background:
    linear-gradient(180deg, rgba(241, 250, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.tw-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.tw-product-badges {
  align-items: center;
}

.tw-product-highlight {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 0 12px;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.08);
  border: 1px solid rgba(79, 111, 255, 0.08);
}

.tw-product-card .compact-list {
  margin-top: 18px;
}

.tw-steps-panel,
.tw-news-panel {
  min-height: 100%;
}

.tw-step-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
}

.tw-step-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 64px;
  bottom: -16px;
  width: 2px;
  background: linear-gradient(180deg, rgba(79, 111, 255, 0.26), rgba(79, 111, 255, 0));
}

.tw-steps-list .tw-step-card:last-child::before {
  display: none;
}

.tw-step-badge {
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 10px;
}

.tw-step-label {
  display: inline-flex;
  margin-bottom: 8px;
}

.tw-step-card-purple {
  background: linear-gradient(180deg, rgba(248, 245, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.tw-step-card-cyan {
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.tw-step-card-orange {
  background: linear-gradient(180deg, rgba(255, 247, 242, 0.98), rgba(255, 255, 255, 0.98));
}

.tw-news-head {
  justify-content: space-between;
}

.tw-news-card .news-meta {
  color: #446ae0;
}

.tw-news-card-featured {
  background:
    radial-gradient(circle at top right, rgba(79, 111, 255, 0.14), transparent 28%),
    #fff;
}

.tw-news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.1);
  color: #3d63d7;
}

.tw-cta-section {
  padding-top: 10px;
  padding-bottom: 96px;
}

.tw-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 36px 40px;
}

.tw-cta-panel h2 {
  margin: 14px 0 0;
  color: #1e3a65;
  font-size: clamp(30px, 4vw, 44px);
  font-family: var(--km-font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.tw-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tw-home [data-motion="float"] {
  will-change: transform;
}

.tw-home-hero-simple {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 92px);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 18, 38, 0.82) 0%, rgba(12, 30, 60, 0.7) 34%, rgba(12, 30, 60, 0.38) 58%, rgba(12, 30, 60, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 31, 59, 0.08) 0%, rgba(15, 31, 59, 0.56) 100%),
    var(--tw-hero-bg-image) center center / cover no-repeat;
}

.tw-home-hero-simple::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(122, 164, 255, 0.22), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(85, 138, 255, 0.18), transparent 26%);
  pointer-events: none;
}

.tw-home-hero-simple::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(248, 251, 255, 0.92) 100%);
  pointer-events: none;
}

.tw-home-hero-simple-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  gap: 0;
  align-items: center;
  min-height: inherit;
  padding: 84px 0 120px;
}

.tw-home-simple-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(56px, 7vw, 104px);
  font-family: var(--km-font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.tw-home-simple-title small {
  display: block;
  max-width: none;
  margin-top: 20px;
  color: rgba(233, 241, 255, 0.96);
  font-size: 0.34em;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.tw-home-simple-desc {
  max-width: none;
  margin: 28px 0 0;
  color: rgba(225, 235, 250, 0.94);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  white-space: nowrap;
}

.tw-home-simple-subdesc {
  max-width: none;
  margin: 18px 0 0;
  color: rgba(173, 194, 225, 0.92);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
  white-space: nowrap;
}

.tw-home-simple-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.tw-home-simple-points li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(185, 205, 255, 0.18);
  color: #f3f7ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.tw-home-simple-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: #4f6fff;
  box-shadow: 0 0 0 6px rgba(121, 168, 255, 0.14);
}

.tw-home-simple-actions {
  margin-top: 38px;
}

.tw-home-simple-button {
  min-width: 160px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  background: #4f6fff;
  color: #ffffff;
  box-shadow: none;
  transform: none;
}

.tw-home-simple-button:hover,
.tw-home-simple-button:active {
  background: #4563e6;
  box-shadow: none;
  transform: none;
}

.tw-sales-section .tw-section-heading h2,
.tw-proof-section .tw-section-heading h2 {
  max-width: 14ch;
}

.tw-proof-card-grid,
.tw-advantage-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tw-proof-card,
.tw-advantage-inline-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(76, 111, 222, 0.08);
  box-shadow: 0 18px 40px rgba(52, 86, 168, 0.08);
}

.tw-proof-card {
  background:
    radial-gradient(circle at top right, rgba(79, 111, 255, 0.12), transparent 26%),
    #fff;
}

.tw-proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 111, 255, 0.08);
  color: #446ae0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tw-proof-card h3,
.tw-advantage-inline-card h3 {
  margin: 18px 0 0;
  color: #20395f;
  font-size: 24px;
  font-family: var(--km-font-display);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.tw-proof-card p,
.tw-advantage-inline-card p {
  margin: 12px 0 0;
  color: #6a7e9c;
  font-size: 16px;
  line-height: 1.85;
}

.tw-proof-card strong {
  display: block;
  margin-top: 20px;
  color: #2953bf;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

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

.tw-advantage-inline-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79, 111, 255, 0.1);
  color: #446ae0;
  font-size: 15px;
  font-weight: 700;
}

.tradewind-home-hero {
  padding: 28px 0 72px;
  background:
    radial-gradient(circle at 4% 14%, rgba(255, 219, 114, 0.24), transparent 16%),
    radial-gradient(circle at 92% 10%, rgba(122, 86, 255, 0.22), transparent 20%),
    radial-gradient(circle at 82% 74%, rgba(56, 216, 255, 0.2), transparent 24%),
    linear-gradient(180deg, #f7f9ff 0%, #eef5ff 52%, #f9fbff 100%);
}

.hero-announcement-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(111, 145, 214, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(85, 119, 188, 0.08);
}

.hero-announcement-bar p {
  margin: 0;
  color: #55708f;
  font-size: 14px;
  line-height: 1.6;
}

.hero-announcement-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f6fff 0%, #7a56ff 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tradewind-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 32px;
  align-items: center;
}

.tradewind-hero-copy {
  max-width: 860px;
}

.tradewind-hero-stage {
  display: grid;
  justify-items: end;
}

.hero-inline-metrics-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-inline-metric small {
  color: #7690b2;
  font-size: 13px;
  line-height: 1.6;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(111, 145, 214, 0.12);
  color: #4f6686;
  font-size: 14px;
  font-weight: 600;
}

.hero-proof-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--km-blue), var(--km-cyan));
}

.hero-dashboard-card {
  width: min(100%, 560px);
  padding: 24px;
  border: 1px solid rgba(111, 145, 214, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(122, 86, 255, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 20px 48px rgba(69, 95, 166, 0.14);
}

.hero-dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-dashboard-top h3 {
  margin: 10px 0 0;
  font-size: 30px;
  line-height: 1.22;
}

.hero-dashboard-screen {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin-bottom: 18px;
  border: 1px solid rgba(111, 145, 214, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(241, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.hero-dashboard-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.hero-dashboard-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-dashboard-mini-card,
.hero-dashboard-stat {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: rgba(28, 41, 68, 0.72);
  backdrop-filter: blur(12px);
}

.hero-dashboard-mini-card small,
.hero-dashboard-stat small {
  display: block;
  margin-bottom: 8px;
  color: rgba(225, 233, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-dashboard-mini-card strong,
.hero-dashboard-stat strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

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

.hero-dashboard-stat span {
  display: inline-flex;
  margin-top: 8px;
  color: #8ed3ff;
  font-size: 12px;
  font-weight: 700;
}

.release-layout,
.command-layout,
.home-news-layout {
  display: grid;
  gap: 30px;
}

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

.release-card {
  min-height: 100%;
  padding: 28px;
}

.command-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.command-sidebar {
  display: grid;
  gap: 24px;
}

.command-story-card {
  padding: 34px;
}

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

.command-signal-card {
  min-height: 100%;
  padding: 28px;
}

.product-showcase-card-wide {
  padding: 38px;
}

.product-supporting-text {
  margin: 18px 0 0;
  color: #5c7290;
  font-size: 16px;
  line-height: 1.85;
}

.home-audience-section {
  padding-top: 88px;
}

.delivery-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 32px;
  align-items: start;
}

.home-news-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: start;
}

.conversion-card-stack {
  display: grid;
  gap: 24px;
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }

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

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .tw-hero-grid,
  .tw-split-grid,
  .tw-proof-grid,
  .tw-cta-panel,
  .tradewind-hero-layout,
  .release-grid,
  .command-layout,
  .command-signal-grid,
  .delivery-proof-layout,
  .home-news-layout,
  .hero-grid,
  .hero-stage,
  .hero-summary-layout,
  .audience-grid,
  .overview-layout,
  .solution-layout,
  .evidence-layout,
  .conversion-layout,
  .double-panel,
  .scenario-layout,
  .detail-head,
  .about-grid,
  .contact-layout,
  .cta-panel,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .tw-upgrade-grid,
  .tw-product-list,
  .tw-proof-card-grid,
  .tw-advantage-inline-grid,
  .tw-company-metrics,
  .tw-hero-metrics,
  .release-grid,
  .audience-grid,
  .overview-grid,
  .hero-inline-metrics,
  .product-showcase-columns,
  .hero-dashboard-stats,
  .compare-grid,
  .news-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.home .site-nav {
    background: rgba(255, 255, 255, 0.99);
  }

  body.home .menu-toggle {
    border-color: rgba(76, 111, 222, 0.12);
  }

  body.home .menu-toggle span {
    background: #355cc8;
  }

  .tw-home-hero {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .tw-home-hero-simple {
    min-height: calc(100svh - 84px);
  }

  .tw-floating-service {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 24px, 1600px);
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(76, 111, 222, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 12px 30px rgba(76, 111, 222, 0.08);
  }

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

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .hero-stats,
  .hero-trust-row,
  .hero-inline-metrics,
  .hero-dashboard-overlay,
  .audience-grid,
  .overview-grid,
  .product-grid,
  .release-grid,
  .command-signal-grid,
  .compare-grid,
  .news-grid,
  .dashboard-grid,
  .detail-grid,
  .product-showcase-columns {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .tw-cta-panel,
  .tw-news-head,
  .tw-card-meta,
  .news-row,
  .product-showcase-head,
  .hero-announcement-bar,
  .hero-command-grid {
    grid-template-columns: 1fr;
  }

  .card-stack-head,
  .card-head-cluster {
    align-items: flex-start;
  }

  .brand-logo {
    height: 42px;
  }
}

@media (max-width: 640px) {
  body.home .nav-bar {
    min-height: 70px;
  }

  .tw-home-banner .container {
    min-height: 40px;
  }

  .tw-home-banner p {
    font-size: 12px;
  }

  .tw-home-banner p strong {
    display: block;
    margin: 4px 0 0;
    font-size: 13px;
  }

  .tw-home-hero,
  .tw-flat-section,
  .tw-split-section,
  .tw-cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .tw-home-hero {
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .tw-home-hero-simple {
    min-height: calc(100svh - 72px);
  }

  .tw-home-simple-title {
    font-size: clamp(40px, 14vw, 64px);
    white-space: normal;
  }

  .tw-home-simple-title small {
    max-width: none;
    font-size: 0.42em;
    white-space: normal;
  }

  .tw-home-hero-simple-grid {
    padding: 54px 0 92px;
  }

  .tw-home-simple-desc {
    font-size: 18px;
    white-space: normal;
  }

  .tw-home-simple-subdesc,
  .tw-home-simple-points li,
  .tw-proof-card p,
  .tw-advantage-inline-card p {
    font-size: 15px;
  }

  .tw-home-simple-subdesc {
    white-space: normal;
  }

  .tw-home-simple-points {
    gap: 10px;
    margin-top: 26px;
  }

  .tw-proof-card,
  .tw-advantage-inline-card {
    padding: 22px;
  }


  .tw-hero-title {
    font-size: 38px;
  }

  .tw-hero-title-lead {
    gap: 12px;
    margin-bottom: 8px;
  }

  .tw-hero-desc,
  .tw-section-heading p,
  .tw-upgrade-card p,
  .tw-company-panel p,
  .tw-audience-card p,
  .tw-product-card p,
  .tw-step-card p,
  .tw-news-card p,
  .tw-cta-panel p {
    font-size: 15px;
    line-height: 1.8;
  }

  .tw-orbit-card {
    min-height: 410px;
    padding: 20px 18px 16px;
    border-radius: 28px;
  }

  .tw-orbit-bg {
    min-height: 350px;
  }

  .tw-orbit-ring-1 {
    width: 280px;
    height: 280px;
  }

  .tw-orbit-ring-2 {
    width: 214px;
    height: 214px;
  }

  .tw-orbit-ring-3 {
    width: 146px;
    height: 146px;
  }

  .tw-person-chip {
    width: min(100%, 182px);
    padding: 10px 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .tw-person-avatar {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .tw-person-chip span {
    font-size: 13px;
  }

  .tw-person-chip-1 {
    top: 22px;
    left: 4px;
  }

  .tw-person-chip-2 {
    top: 142px;
    right: 0;
  }

  .tw-person-chip-3 {
    left: 24px;
    bottom: 18px;
  }

  .tw-section-heading h2,
  .tw-cta-panel h2 {
    font-size: 30px;
  }

  .tw-upgrade-card,
  .tw-company-panel,
  .tw-audience-card,
  .tw-product-card,
  .tw-news-card {
    padding: 22px;
  }

  .tw-card-headline,
  .tw-product-head,
  .tw-value-top {
    align-items: flex-start;
  }

  .tw-card-meta,
  .tw-news-head {
    display: grid;
    gap: 10px;
  }

  .tw-step-card {
    grid-template-columns: 1fr;
    padding: 20px 22px;
  }

  .tw-step-card::before {
    display: none;
  }

  .tw-step-badge {
    flex-direction: row;
  }

  .tw-company-metrics {
    grid-template-columns: 1fr;
  }

  .tw-hero-metrics {
    grid-template-columns: 1fr;
  }

  .tw-cta-panel {
    padding: 26px;
  }

  .section {
    padding: 64px 0;
  }

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

  .tradewind-home-hero {
    padding-bottom: 52px;
  }

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

  .hero-audience-chips {
    gap: 10px;
    margin-bottom: 16px;
  }

  .audience-chip {
    font-size: 13px;
  }

  .container {
    width: min(100% - 18px, 1600px);
  }

  .hero-command-card,
  .hero-dashboard-card,
  .hero-company-summary,
  .hero-trust-card,
  .hero-value-strip {
    padding: 22px;
  }

  .stat-card,
  .hero-trust-card,
  .hero-panel-card,
  .product-card,
  .compare-card,
  .scenario-card,
  .detail-card,
  .about-card,
  .contact-card,
  .consult-form,
  .cta-panel,
  .hero-dashboard,
  .insight-panel,
  .news-card,
  .news-row,
  .hero-side-card,
  .overview-note,
  .overview-card,
  .audience-card,
  .product-showcase-card,
  .solution-metrics,
  .journey-step,
  .evidence-visual-card,
  .news-list-item,
  .conversion-card {
    border-radius: 24px;
  }

  .detail-card,
  .about-card,
  .contact-card,
  .consult-form,
  .cta-panel,
  .hero-dashboard,
  .insight-panel,
  .news-row,
  .hero-side-card,
  .overview-note,
  .overview-card,
  .audience-card,
  .product-showcase-card,
  .solution-metrics,
  .journey-step,
  .news-list-item,
  .conversion-card {
    padding: 26px;
  }

  .hero-company-summary {
    padding: 24px;
  }

  .hero-company-summary p,
  .hero-announcement-bar p,
  .hero-side-card p,
  .overview-note p,
  .overview-card p,
  .solution-metrics p,
  .journey-step p,
  .evidence-copy p,
  .news-list-item p,
  .conversion-card p {
    font-size: 16px;
  }

  .evidence-visual-card {
    padding: 20px;
  }

  .hero-dashboard-screen,
  .hero-dashboard-image {
    min-height: 280px;
  }

  .evidence-scene-image {
    min-height: 240px;
    max-height: 320px;
  }

  .journey-step {
    display: grid;
    grid-template-columns: 1fr;
  }

  .journey-badge {
    grid-auto-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .product-showcase-title {
    display: grid;
    grid-template-columns: 1fr;
  }

  .insight-ring {
    width: 220px;
    height: 220px;
  }

  .brand-logo {
    height: 40px;
  }

  .footer-logo {
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-marquee-track {
    animation: none;
  }

  .tilt-card,
  .button {
    transition: none;
  }
}
