:root {
  --color-midnight-indigo: #0B3558;
  --color-action-blue: #006BFF;
  --color-lavender-glow: #e55cff;
  --color-royal-amethyst: #8247f5;
  --color-sunset-gold: #ffa600;
  --color-skybound-blue: #0099ff;
  --color-glacier-blue: #004EBA;
  --color-snow-white: #ffffff;
  --color-cloud-mist: #F8F9FB;
  --color-pale-gray: #E7EDF6;
  --color-slate-blue: #476788;
  --color-steel-gray: #A6BBD1;
  --color-platinum-tint: #D4E0ED;
  --color-text-black: #0A0A0A;
  --font-gilroy: 'Gilroy', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-card: rgba(71, 103, 136, 0.04) 0 4px 5px, rgba(71, 103, 136, 0.03) 0 8px 15px, rgba(71, 103, 136, 0.08) 0 30px 50px;
  --shadow-hover: rgba(71, 103, 136, 0.04) 0 4px 5px, rgba(71, 103, 136, 0.03) 0 4px 10px, rgba(71, 103, 136, 0.05) 0 10px 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-black);
  background: var(--color-snow-white);
  font-family: var(--font-gilroy);
  font-size: 14px;
  line-height: 1.71;
}

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(212, 224, 237, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-midnight-indigo);
}

.brand-logo {
  width: 202px;
  height: 58px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-midnight-indigo);
  font-weight: 500;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

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

.language-select {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 8px;
  color: var(--color-midnight-indigo);
  background: var(--color-snow-white);
  font-weight: 600;
}

.language-select span {
  color: var(--color-action-blue);
  font-size: 12px;
}

.language-select select {
  max-width: 118px;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  font: inherit;
}

.nav-cta,
.btn {
  min-height: 40px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn.primary {
  color: var(--color-snow-white);
  background: var(--color-action-blue);
  box-shadow: rgba(71, 103, 136, 0.04) 0 4px 5px, rgba(71, 103, 136, 0.03) 0 8px 15px, rgba(71, 103, 136, 0.06) 0 15px 30px;
}

.btn.ghost {
  color: var(--color-midnight-indigo);
  background: var(--color-pale-gray);
}

.btn.ghost.subtle {
  color: var(--color-action-blue);
  border: 1px solid rgba(42, 105, 180, 0.18);
  background: rgba(255, 255, 255, 0.8);
}

.btn.light.ghost {
  color: var(--color-snow-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--color-pale-gray);
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--color-midnight-indigo);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.flow-section,
.features-section,
.trust-section,
.apps-section,
.industry-extension-section,
.pillar-section,
.pricing-section,
.switching-section,
.ai-section,
.ai-platform-section,
.management-section,
.teams-section,
.data-protection-section,
.faq-section {
  position: relative;
  overflow: hidden;
}

.flow-section::before,
.features-section::before,
.trust-section::before,
.apps-section::before,
.industry-extension-section::before,
.pillar-section::before,
.pricing-section::before,
.switching-section::before,
.ai-section::before,
.ai-platform-section::before,
.management-section::before,
.teams-section::before,
.data-protection-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.flow-section > *,
.features-section > *,
.trust-section > *,
.apps-section > *,
.industry-extension-section > *,
.pillar-section > *,
.pricing-section > *,
.switching-section > *,
.ai-section > *,
.ai-platform-section > *,
.management-section > *,
.teams-section > *,
.data-protection-section > *,
.faq-section > * {
  position: relative;
  z-index: 1;
}

.maintenance-notice {
  margin-top: 28px;
  margin-bottom: -40px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(255, 166, 0, 0.42);
  border-left: 6px solid var(--color-sunset-gold);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8e6 0%, #ffffff 62%, #eef6ff 100%);
  box-shadow: rgba(255, 166, 0, 0.12) 0 14px 34px;
}

.maintenance-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-snow-white);
  background: var(--color-sunset-gold);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.maintenance-notice span {
  display: inline-flex;
  margin-bottom: 4px;
  color: #a34800;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maintenance-notice h2 {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
}

.maintenance-notice p {
  margin: 8px 0 0;
  color: var(--color-midnight-indigo);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
}

.hero {
  min-height: min(920px, calc(100vh - 76px));
  width: min(1360px, calc(100% - 56px));
  display: grid;
  grid-template-columns: minmax(560px, 1.05fr) minmax(480px, 0.95fr);
  column-gap: 64px;
  row-gap: 34px;
  align-items: start;
  align-content: start;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--color-glacier-blue);
  background: var(--color-pale-gray);
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-midnight-indigo);
  letter-spacing: normal;
}

h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
}

.hero-copy p,
.section-heading p,
.ai-copy p,
.team-panel p,
.compare-hero p,
.final-cta p {
  color: var(--color-slate-blue);
  font-size: 18px;
  line-height: 1.6;
}

.hero-definition,
.compare-definition {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--color-action-blue);
  border-radius: 8px;
  color: var(--color-midnight-indigo);
  background: var(--color-cloud-mist);
  font-weight: 700;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-banner {
  margin-top: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-left: 4px solid var(--color-action-blue);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: rgba(71, 103, 136, 0.06) 0 10px 28px;
}

.promo-banner-copy {
  min-width: 0;
}

.promo-banner span,
.pricing-promo span {
  display: block;
}

.promo-banner-copy > span {
  color: var(--color-action-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-banner strong {
  margin-top: 4px;
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 19px;
  line-height: 1.25;
}

.promo-banner p {
  margin: 6px 0 0;
  color: var(--color-slate-blue);
  font-size: 14px;
  line-height: 1.55;
}

.promo-banner em {
  margin-top: 6px;
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.promo-banner .btn {
  flex: 0 0 auto;
}

.hero-evidence {
  grid-column: 1 / -1;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.72fr);
  grid-template-areas:
    "proof workflow"
    "stats workflow";
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(212, 224, 237, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(0, 107, 255, 0.055) 0%, rgba(0, 107, 255, 0) 34%),
    linear-gradient(280deg, rgba(130, 71, 245, 0.06) 0%, rgba(130, 71, 245, 0) 38%),
    linear-gradient(135deg, rgba(248, 249, 251, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: rgba(71, 103, 136, 0.05) 0 18px 46px;
}

.saas-proof-strip {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.saas-proof-strip article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  min-height: 134px;
  padding: 46px 12px 14px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: rgba(71, 103, 136, 0.04) 0 8px 18px;
}

.saas-proof-strip article::before {
  content: "$";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--color-snow-white);
  background: var(--color-action-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: rgba(0, 107, 255, 0.22) 0 8px 18px;
}

.saas-proof-strip article:nth-child(2)::before {
  content: "6M";
  background: var(--color-sunset-gold);
  box-shadow: rgba(255, 166, 0, 0.2) 0 8px 18px;
}

.saas-proof-strip article:nth-child(3)::before {
  content: "360";
  background: var(--color-glacier-blue);
  font-size: 11px;
}

.saas-proof-strip article:nth-child(4)::before {
  content: "AI";
  background: var(--color-royal-amethyst);
  box-shadow: rgba(130, 71, 245, 0.2) 0 8px 18px;
}

.saas-proof-strip article:nth-child(5)::before {
  content: "文A";
  background: #0f766e;
  font-size: 11px;
}

.saas-proof-strip article::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-action-blue), rgba(0, 153, 255, 0.18));
}

.saas-proof-strip strong,
.saas-proof-strip span {
  display: block;
}

.saas-proof-strip strong {
  color: var(--color-midnight-indigo);
  font-size: 14px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.saas-proof-strip span {
  margin-top: 6px;
  color: var(--color-slate-blue);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

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

.hero-proof div {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 20px 18px 16px;
  border: 1px solid rgba(212, 224, 237, 0.92);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: rgba(71, 103, 136, 0.06) 0 16px 34px;
}

.hero-proof div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 107, 255, 0.12), rgba(0, 107, 255, 0) 48%);
  pointer-events: none;
}

.hero-proof div::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-action-blue) 0 68%, rgba(212, 224, 237, 0.75) 68% 100%);
}

.hero-proof div:nth-child(2)::after {
  background: linear-gradient(90deg, var(--color-glacier-blue) 0 82%, rgba(212, 224, 237, 0.75) 82% 100%);
}

.hero-proof div:nth-child(3)::after {
  background: linear-gradient(90deg, var(--color-royal-amethyst) 0 100%, rgba(212, 224, 237, 0.75) 100% 100%);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  position: relative;
  z-index: 1;
  color: var(--color-midnight-indigo);
  font-size: 28px;
  line-height: 1.2;
}

.hero-proof span {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: var(--color-slate-blue);
  font-size: 13px;
}

.hero-value-points {
  grid-area: workflow;
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 0;
  height: 100%;
  align-content: stretch;
}

.hero-value-points::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 22px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 107, 255, 0.5), rgba(130, 71, 245, 0.18));
}

.hero-value-points article {
  position: relative;
  min-height: 100px;
  padding: 15px 16px 15px 58px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(248, 249, 251, 0.96), #ffffff);
  box-shadow: rgba(71, 103, 136, 0.04) 0 8px 18px;
}

.hero-value-points article::before {
  content: "01";
  position: absolute;
  left: 12px;
  top: 15px;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--color-snow-white);
  background: var(--color-action-blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.hero-value-points article:nth-child(2)::before {
  content: "02";
  background: var(--color-glacier-blue);
}

.hero-value-points article:nth-child(3)::before {
  content: "03";
  background: var(--color-royal-amethyst);
}

.hero-value-points strong,
.hero-value-points span {
  display: block;
}

.hero-value-points strong {
  color: var(--color-midnight-indigo);
  font-size: 15px;
  line-height: 1.35;
}

.hero-value-points span {
  margin-top: 3px;
  color: var(--color-slate-blue);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding-top: 48px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 14px;
  opacity: 0.72;
  transform: rotate(-10deg);
}

.hero-visual::before {
  width: 240px;
  height: 120px;
  top: 8px;
  right: 20px;
  background: linear-gradient(135deg, rgba(229, 92, 255, 0.14), rgba(130, 71, 245, 0.03));
}

.hero-visual::after {
  width: 180px;
  height: 96px;
  left: 0;
  bottom: 46px;
  background: linear-gradient(135deg, rgba(255, 166, 0, 0.16), rgba(0, 153, 255, 0.04));
  transform: rotate(12deg);
}

.mockup-card,
.floating-card,
.feature-card,
.pricing-card,
.management-grid article,
.team-panel,
.ai-panel,
.pillar-grid article,
.switching-grid article {
  border-radius: 16px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
}

.main-mockup {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: 18px;
  border: 1px solid rgba(212, 224, 237, 0.85);
}

.mockup-topbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-pale-gray);
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-steel-gray);
}

.mockup-topbar strong {
  margin-left: 10px;
  color: var(--color-midnight-indigo);
}

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

.pipeline-column {
  min-height: 160px;
  padding: 14px;
  display: grid;
  align-content: space-between;
  border-radius: 16px;
  color: var(--color-midnight-indigo);
  background: var(--color-cloud-mist);
}

.pipeline-column strong,
.pipeline-column span,
.pipeline-column em {
  display: block;
  font-style: normal;
}

.pipeline-column span {
  font-size: 24px;
  font-weight: 700;
}

.pipeline-column em {
  color: var(--color-slate-blue);
  font-size: 12px;
}

.pipeline-column.blue { border-top: 4px solid var(--color-action-blue); }
.pipeline-column.cyan { border-top: 4px solid var(--color-skybound-blue); }
.pipeline-column.purple { border-top: 4px solid var(--color-royal-amethyst); }
.pipeline-column.orange { border-top: 4px solid var(--color-sunset-gold); }

.insight-panel {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  background: var(--color-midnight-indigo);
}

.insight-panel span,
.insight-panel strong {
  display: block;
}

.insight-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.insight-panel strong {
  color: var(--color-snow-white);
  font-size: 18px;
}

.insight-panel button {
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--color-action-blue);
  background: var(--color-snow-white);
  font-weight: 700;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 18px;
  border: 1px solid rgba(212, 224, 237, 0.7);
}

.floating-card span,
.floating-card p {
  color: var(--color-slate-blue);
}

.floating-card strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.customer-card {
  left: 0;
  top: 82px;
}

.usage-card {
  right: 8px;
  bottom: 40px;
}

.flow-section,
.management-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
}

.flow-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.flow-section::before {
  background:
    linear-gradient(120deg, rgba(0, 107, 255, 0.08) 0%, rgba(0, 107, 255, 0) 46%),
    linear-gradient(300deg, rgba(255, 166, 0, 0.09) 0%, rgba(255, 166, 0, 0) 42%),
    repeating-linear-gradient(135deg, rgba(0, 107, 255, 0.035) 0 1px, transparent 1px 18px);
}

.features-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
}

.features-section::before {
  background:
    linear-gradient(130deg, rgba(15, 118, 110, 0.08) 0%, rgba(15, 118, 110, 0) 42%),
    linear-gradient(320deg, rgba(231, 237, 246, 0.48) 0%, rgba(231, 237, 246, 0) 48%),
    repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.026) 0 1px, transparent 1px 22px);
}

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

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.ai-copy h2,
.final-cta h2 {
  margin-top: 14px;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.flow-line article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(212, 224, 237, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.flow-line article::after,
.feature-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--color-action-blue), rgba(0, 153, 255, 0.24));
}

.flow-line article:nth-child(2)::after,
.feature-card:nth-child(2)::before,
.feature-card:nth-child(5)::before {
  background: linear-gradient(90deg, #0f766e, rgba(15, 118, 110, 0.22));
}

.flow-line article:nth-child(3)::after,
.feature-card:nth-child(3)::before,
.feature-card:nth-child(6)::before {
  background: linear-gradient(90deg, var(--color-royal-amethyst), rgba(130, 71, 245, 0.22));
}

.flow-line article:nth-child(4)::after {
  background: linear-gradient(90deg, var(--color-sunset-gold), rgba(255, 166, 0, 0.24));
}

.flow-line span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 50px;
  color: var(--color-glacier-blue);
  background: var(--color-pale-gray);
  font-size: 12px;
  font-weight: 700;
}

.flow-line strong {
  display: block;
  margin-top: 24px;
  color: var(--color-midnight-indigo);
  font-size: 20px;
}

.flow-line p,
.feature-card p,
.management-grid p,
.check-list,
.research-fields,
.usage-meter {
  color: var(--color-slate-blue);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(212, 224, 237, 0.7);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preview-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.preview-console {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}

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

.preview-flow article,
.preview-summary,
.cost-scenarios article,
.resource-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: rgba(71, 103, 136, 0.05) 0 14px 34px;
}

.preview-flow article {
  padding: 22px;
}

.preview-flow article span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--color-glacier-blue);
  background: var(--color-pale-gray);
  font-size: 12px;
  font-weight: 800;
}

.preview-flow article strong,
.preview-summary strong,
.cost-scenarios strong,
.resource-card strong {
  display: block;
  color: var(--color-midnight-indigo);
  line-height: 1.3;
}

.preview-flow article strong,
.resource-card strong {
  font-size: 20px;
}

.preview-flow article p,
.preview-summary span,
.preview-summary p,
.cost-scenarios p,
.resource-card p {
  color: var(--color-slate-blue);
  line-height: 1.58;
}

.preview-flow article p,
.resource-card p {
  margin: 10px 0 0;
}

.preview-summary {
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.07), rgba(0, 107, 255, 0) 42%),
    linear-gradient(315deg, rgba(15, 118, 110, 0.07), rgba(15, 118, 110, 0) 42%),
    rgba(255, 255, 255, 0.92);
}

.preview-summary div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 224, 237, 0.74);
}

.preview-summary div:last-of-type {
  border-bottom: 0;
}

.preview-summary p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.cost-section {
  width: min(1180px, calc(100% - 48px));
  padding: 72px 28px;
  border: 1px solid rgba(212, 224, 237, 0.78);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 166, 0, 0.08), rgba(255, 166, 0, 0) 34%),
    linear-gradient(315deg, rgba(0, 107, 255, 0.06), rgba(0, 107, 255, 0) 36%),
    #ffffff;
}

.cost-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 18px;
  align-items: stretch;
}

.cost-unit {
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--color-snow-white);
  background: var(--color-midnight-indigo);
}

.cost-unit span {
  padding: 0 18px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

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

.cost-scenarios article {
  padding: 22px;
}

.cost-scenarios article span {
  display: block;
  color: var(--color-glacier-blue);
  font-size: 13px;
  font-weight: 800;
}

.cost-scenarios strong {
  margin-top: 12px;
  font-size: 22px;
}

.resource-hero {
  padding-top: 130px;
  padding-bottom: 72px;
}

.resource-hero h1 {
  max-width: 840px;
  margin: 14px 0 0;
  color: var(--color-midnight-indigo);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.resource-hero p {
  max-width: 760px;
  color: var(--color-slate-blue);
  font-size: 19px;
  line-height: 1.7;
}

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

.resource-card {
  display: block;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(0, 107, 255, 0.42);
  box-shadow: rgba(0, 107, 255, 0.1) 0 18px 42px;
  transform: translateY(-2px);
  outline: none;
}

.resource-detail-section,
.resource-list-section,
.resource-proof-section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.trust-section,
.ai-platform-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
}

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

.trust-section::before {
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.08) 0%, rgba(0, 107, 255, 0) 42%),
    linear-gradient(315deg, rgba(130, 71, 245, 0.075) 0%, rgba(130, 71, 245, 0) 42%),
    repeating-linear-gradient(0deg, rgba(71, 103, 136, 0.026) 0 1px, transparent 1px 24px);
}

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

.ai-platform-section::before {
  background:
    linear-gradient(130deg, rgba(130, 71, 245, 0.095) 0%, rgba(130, 71, 245, 0) 45%),
    linear-gradient(300deg, rgba(0, 153, 255, 0.085) 0%, rgba(0, 153, 255, 0) 42%),
    repeating-linear-gradient(135deg, rgba(130, 71, 245, 0.025) 0 1px, transparent 1px 20px);
}

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

.trust-grid article,
.ai-platform-grid article,
.app-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(71, 103, 136, 0.04) 0 10px 26px;
}

.trust-grid article::after,
.ai-platform-grid article::after,
.app-grid article::after,
.pillar-grid article::after,
.management-grid article::after,
.protection-grid article::after,
.faq-item::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 0;
  width: 96px;
  height: 4px;
  z-index: 0;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, rgba(0, 107, 255, 0.68), rgba(0, 153, 255, 0.18));
  pointer-events: none;
}

.trust-grid article:nth-child(2n)::after,
.ai-platform-grid article:nth-child(2n)::after,
.app-grid article:nth-child(2n)::after,
.pillar-grid article:nth-child(2n)::after,
.management-grid article:nth-child(2n)::after,
.protection-grid article:nth-child(2n)::after,
.faq-item:nth-child(2n)::after {
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.68), rgba(15, 118, 110, 0.18));
}

.trust-grid article:nth-child(3n)::after,
.ai-platform-grid article:nth-child(3n)::after,
.app-grid article:nth-child(3n)::after,
.pillar-grid article:nth-child(3n)::after,
.management-grid article:nth-child(3n)::after,
.protection-grid article:nth-child(3n)::after,
.faq-item:nth-child(3n)::after {
  background: linear-gradient(90deg, rgba(130, 71, 245, 0.68), rgba(130, 71, 245, 0.18));
}

.trust-grid article > *,
.ai-platform-grid article > *,
.app-grid article > *,
.pillar-grid article > *,
.management-grid article > *,
.protection-grid article > *,
.faq-item > * {
  position: relative;
  z-index: 1;
}

.trust-grid span,
.ai-platform-grid span,
.app-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 50px;
  color: var(--color-glacier-blue);
  background: var(--color-pale-gray);
  font-size: 12px;
  font-weight: 800;
}

.trust-grid strong,
.ai-platform-grid strong,
.app-grid strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 19px;
  line-height: 1.28;
}

.trust-grid p,
.ai-platform-grid p,
.app-grid p {
  margin: 10px 0 0;
  color: var(--color-slate-blue);
  line-height: 1.58;
}

.apps-section {
  width: min(1180px, calc(100% - 48px));
  padding: 72px 28px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: start;
  border: 1px solid rgba(212, 224, 237, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.05), rgba(0, 107, 255, 0) 34%),
    linear-gradient(315deg, rgba(15, 118, 110, 0.06), rgba(15, 118, 110, 0) 36%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 54%, #f7fbf8 100%);
  box-shadow: rgba(71, 103, 136, 0.04) 0 18px 46px;
}

.apps-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.026) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(0, 107, 255, 0.018) 0 1px, transparent 1px 22px);
}

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

.industry-extension-section {
  width: min(1180px, calc(100% - 48px));
  padding: 86px 28px;
  border: 1px solid rgba(212, 224, 237, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.06), rgba(0, 107, 255, 0) 35%),
    linear-gradient(315deg, rgba(130, 71, 245, 0.07), rgba(130, 71, 245, 0) 38%),
    #ffffff;
  box-shadow: rgba(71, 103, 136, 0.04) 0 18px 46px;
}

.industry-extension-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(0, 107, 255, 0.018) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(130, 71, 245, 0.018) 0 1px, transparent 1px 24px);
}

.industry-extension-grid {
  margin-top: 34px;
}

.industry-extension-note {
  max-width: 860px;
  margin: 26px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(0, 107, 255, 0.14);
  border-radius: 8px;
  color: var(--color-slate-blue);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  line-height: 1.62;
}

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

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--color-glacier-blue);
  background: var(--color-pale-gray);
  font-size: 12px;
  font-weight: 700;
}

.feature-card h3 {
  margin-top: 18px;
}

.pillar-section {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.pillar-section::before {
  background:
    linear-gradient(120deg, rgba(130, 71, 245, 0.075) 0%, rgba(130, 71, 245, 0) 44%),
    linear-gradient(300deg, rgba(0, 107, 255, 0.065) 0%, rgba(0, 107, 255, 0) 40%),
    repeating-linear-gradient(135deg, rgba(130, 71, 245, 0.024) 0 1px, transparent 1px 22px);
}

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

.pillar-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(212, 224, 237, 0.76);
  background: rgba(255, 255, 255, 0.9);
}

.pillar-grid strong,
.switching-grid strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 20px;
  line-height: 1.25;
}

.pillar-grid p,
.switching-grid p {
  margin: 14px 0 0;
  color: var(--color-slate-blue);
}

.ai-section {
  width: min(1180px, calc(100% - 48px));
  padding: 76px 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(212, 224, 237, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(130, 71, 245, 0.075), rgba(130, 71, 245, 0) 38%),
    linear-gradient(315deg, rgba(0, 153, 255, 0.065), rgba(0, 153, 255, 0) 42%),
    linear-gradient(135deg, #ffffff 0%, #f6f2ff 48%, #f5fbff 100%);
  box-shadow: rgba(71, 103, 136, 0.04) 0 18px 46px;
}

.ai-section::before {
  background:
    repeating-linear-gradient(135deg, rgba(130, 71, 245, 0.028) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(0, 153, 255, 0.018) 0 1px, transparent 1px 26px);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-action-blue);
  font-weight: 700;
}

.ai-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(212, 224, 237, 0.7);
}

.ai-panel::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--color-royal-amethyst), rgba(0, 153, 255, 0.28));
  pointer-events: none;
}

.ai-panel > * {
  position: relative;
  z-index: 1;
}

.ai-panel-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-pale-gray);
}

.ai-panel-head span,
.research-fields span,
.usage-meter span {
  display: block;
  color: var(--color-slate-blue);
  font-size: 12px;
}

.ai-panel-head strong {
  color: var(--color-midnight-indigo);
  font-size: 28px;
}

.research-fields {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.research-fields div {
  padding: 16px;
  border-radius: 12px;
  background: var(--color-cloud-mist);
}

.research-fields strong,
.usage-meter strong {
  display: block;
  color: var(--color-midnight-indigo);
}

.research-fields em {
  display: block;
  color: var(--color-action-blue);
  font-size: 12px;
  font-style: normal;
}

.usage-meter {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  color: var(--color-snow-white);
  background: linear-gradient(135deg, var(--color-action-blue), var(--color-glacier-blue));
}

.usage-meter span,
.usage-meter strong {
  color: var(--color-snow-white);
}

.iot-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100% - 1280px) / 2)) 88px;
  color: var(--color-midnight-indigo);
  background: #eef5f9;
  overflow: hidden;
  isolation: isolate;
}

.iot-shape {
  position: absolute;
  z-index: 0;
  display: block;
  border-radius: 999px;
  pointer-events: none;
}

.iot-shape-a {
  width: 420px;
  height: 420px;
  top: 58px;
  right: max(24px, calc((100% - 1300px) / 2));
  background: rgba(166, 213, 226, 0.48);
}

.iot-shape-b {
  width: 210px;
  height: 210px;
  right: max(36px, calc((100% - 1120px) / 2));
  bottom: 130px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: rgba(71, 103, 136, 0.08) 0 28px 80px;
}

.iot-shape-c {
  width: 148px;
  height: 148px;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: 96px;
  border: 28px solid rgba(120, 178, 205, 0.28);
}

.iot-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 56px;
  align-items: center;
}

.iot-copy {
  min-width: 0;
}

.iot-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #153f64;
}

.iot-brand-mark span {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #25b8b6;
  box-shadow: rgba(37, 184, 182, 0.25) 0 16px 32px;
}

.iot-brand-mark strong {
  font-size: 18px;
  letter-spacing: normal;
}

.iot-label {
  margin: 48px 0 14px;
  color: #24799f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iot-copy h2 {
  max-width: 680px;
  color: #0b3558;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
}

.iot-rule {
  width: min(360px, 100%);
  height: 8px;
  margin: 28px 0;
  border-radius: 999px;
  background: #25b8b6;
}

.iot-text {
  max-width: 610px;
  margin: 0;
  color: #355f83;
  font-size: 19px;
  line-height: 1.68;
}

.iot-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  gap: 18px;
  align-items: center;
}

.iot-device-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 660px);
  aspect-ratio: 708 / 610;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f6fbff;
  box-shadow: rgba(71, 103, 136, 0.16) 0 28px 70px;
}

.iot-device-stage::before {
  content: none;
}

.iot-device-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.iot-visual-photo img {
  object-fit: cover;
}

.iot-visual-poster {
  width: min(100%, 600px);
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(247, 251, 255, 0.96), rgba(235, 245, 249, 0.84));
  box-shadow: rgba(71, 103, 136, 0.11) 0 24px 60px;
}

.iot-visual-poster img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: none;
}

.iot-device-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.iot-device-specs[hidden] {
  display: none;
}

.iot-device-specs span {
  min-width: 0;
  min-height: 34px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 184, 182, 0.34);
  border-radius: 8px;
  color: #063d50;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow: rgba(71, 103, 136, 0.06) 0 10px 24px;
}

.iot-products,
.iot-footnote {
  grid-column: 1 / -1;
}

.iot-products {
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(120, 150, 178, 0.22);
}

.iot-products h3 {
  color: #0b3558;
  font-size: 24px;
}

.iot-product-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.iot-product-card {
  min-width: 0;
  padding: 20px;
  display: block;
  border: 1px solid rgba(189, 206, 222, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: inherit;
  font: inherit;
  text-align: left;
  box-shadow: rgba(71, 103, 136, 0.07) 0 18px 40px;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.iot-product-card:hover,
.iot-product-card:focus-visible {
  border-color: rgba(37, 184, 182, 0.46);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: rgba(71, 103, 136, 0.11) 0 20px 48px;
  transform: translateY(-2px);
  outline: none;
}

.iot-product-card.active {
  border-color: rgba(37, 184, 182, 0.52);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(37, 184, 182, 0.14) 0 20px 48px;
}

.iot-product-card.soon {
  background: rgba(247, 250, 253, 0.7);
}

.iot-product-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #063d50;
  background: #c7f4f0;
  font-size: 12px;
  font-weight: 800;
}

.iot-product-card strong {
  display: block;
  color: #0b3558;
  font-size: 20px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.iot-product-card p {
  margin: 10px 0 0;
  color: #476788;
  line-height: 1.62;
}

.iot-product-specs {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.iot-product-specs em {
  padding: 5px 9px;
  border-radius: 8px;
  color: #153f64;
  background: rgba(231, 237, 246, 0.9);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.iot-footnote {
  margin: 6px 0 0;
  color: #5e7a96;
  font-size: 14px;
}

.iot-hardware-note {
  margin-top: -2px;
  color: #0b3558;
  font-size: 13px;
  font-weight: 700;
}

.pricing-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #fffdfa 0%, #f8fbff 100%);
}

.pricing-section::before {
  background:
    linear-gradient(130deg, rgba(255, 166, 0, 0.1) 0%, rgba(255, 166, 0, 0) 40%),
    linear-gradient(315deg, rgba(0, 107, 255, 0.075) 0%, rgba(0, 107, 255, 0) 45%),
    repeating-linear-gradient(135deg, rgba(255, 166, 0, 0.025) 0 1px, transparent 1px 22px);
}

.pricing-promo {
  margin: 0 auto 24px;
  width: min(100%, 940px);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-left: 4px solid var(--color-action-blue);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: rgba(71, 103, 136, 0.04) 0 12px 30px;
}

.pricing-promo strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 17px;
  line-height: 1.35;
}

.pricing-promo span {
  margin-top: 4px;
  color: var(--color-slate-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.pricing-promo .btn {
  flex: 0 0 auto;
}

.pricing-showcase {
  position: relative;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  border: 1px solid rgba(212, 224, 237, 0.82);
  border-radius: 24px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing-showcase::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--color-sunset-gold), rgba(0, 107, 255, 0.24));
}

.pricing-hero-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 20px;
  color: var(--color-snow-white);
  background: var(--color-midnight-indigo);
  box-shadow: rgba(11, 53, 88, 0.18) 0 24px 60px;
}

.pricing-hero-card h3 {
  margin-top: 18px;
  color: var(--color-snow-white);
  font-size: 30px;
}

.pricing-hero-card .badge {
  color: var(--color-action-blue);
  background: var(--color-snow-white);
}

.pricing-hero-card .check-list,
.pricing-hero-card .price-line span,
.pricing-hero-card .price-line strong {
  color: var(--color-snow-white);
}

.price-line {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-line strong {
  color: var(--color-midnight-indigo);
  font-size: 48px;
  line-height: 1;
}

.price-line span {
  color: var(--color-slate-blue);
  font-size: 14px;
}

.check-list.compact {
  gap: 10px;
}

.pricing-rivals {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-rivals article {
  min-height: 190px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(212, 224, 237, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.pricing-rivals span {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--color-glacier-blue);
  background: var(--color-pale-gray);
  font-size: 12px;
  font-weight: 700;
}

.pricing-rivals strong {
  color: var(--color-midnight-indigo);
  font-size: 22px;
  line-height: 1.25;
}

.pricing-rivals em {
  color: var(--color-slate-blue);
  font-style: normal;
  font-weight: 700;
}

.pricing-table-wrap {
  margin-top: 22px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 20px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
  overflow: auto;
}

.pricing-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  border-bottom: 1px solid var(--color-pale-gray);
  text-align: left;
  vertical-align: top;
}

.pricing-table thead th {
  position: sticky;
  top: 0;
  color: var(--color-midnight-indigo);
  background: var(--color-cloud-mist);
  font-size: 15px;
}

.pricing-table tbody th {
  width: 190px;
  color: var(--color-midnight-indigo);
  font-size: 14px;
}

.pricing-table td {
  color: var(--color-slate-blue);
}

.pricing-table td.winner {
  position: relative;
  color: var(--color-midnight-indigo);
  background: rgba(0, 107, 255, 0.06);
  font-weight: 700;
}

.pricing-table td.winner::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-snow-white);
  background: var(--color-action-blue);
  font-size: 12px;
}

.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-note {
  margin: 14px 0 0;
  color: var(--color-slate-blue);
  font-size: 13px;
}

.pricing-compare-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.pricing-compare-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-bottom: 2px solid rgba(0, 107, 255, 0.22);
  color: var(--color-action-blue);
  font-weight: 700;
  line-height: 1.35;
}

.pricing-compare-links a:hover {
  border-bottom-color: var(--color-action-blue);
}

.switching-section {
  padding-top: 78px;
  padding-bottom: 78px;
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
}

.switching-section::before {
  background:
    linear-gradient(125deg, rgba(71, 103, 136, 0.08) 0%, rgba(71, 103, 136, 0) 42%),
    linear-gradient(315deg, rgba(0, 153, 255, 0.07) 0%, rgba(0, 153, 255, 0) 44%),
    repeating-linear-gradient(0deg, rgba(71, 103, 136, 0.024) 0 1px, transparent 1px 24px);
}

.switching-shell {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.switching-shell h2 {
  margin: 10px 0 14px;
}

.switching-shell > div > p {
  margin: 0;
  color: var(--color-slate-blue);
}

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

.switching-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(212, 224, 237, 0.74);
  background: rgba(255, 255, 255, 0.88);
}

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

.management-grid article {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(212, 224, 237, 0.72);
  background: rgba(255, 255, 255, 0.88);
}

.management-grid strong {
  color: var(--color-midnight-indigo);
  font-size: 20px;
}

.management-section::before {
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.075) 0%, rgba(0, 107, 255, 0) 42%),
    linear-gradient(315deg, rgba(15, 118, 110, 0.075) 0%, rgba(15, 118, 110, 0) 44%),
    repeating-linear-gradient(90deg, rgba(0, 107, 255, 0.022) 0 1px, transparent 1px 24px);
}

.teams-section {
  width: min(1180px, calc(100% - 48px));
  padding: 76px 30px;
  border: 1px solid rgba(212, 224, 237, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.055), rgba(0, 107, 255, 0) 38%),
    linear-gradient(315deg, rgba(130, 71, 245, 0.06), rgba(130, 71, 245, 0) 38%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #fbf8ff 100%);
  box-shadow: rgba(71, 103, 136, 0.04) 0 18px 46px;
}

.teams-section::before {
  background:
    repeating-linear-gradient(135deg, rgba(0, 107, 255, 0.024) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(130, 71, 245, 0.018) 0 1px, transparent 1px 26px);
}

.team-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.team-tabs button {
  border: 1px solid var(--color-platinum-tint);
  border-radius: 50px;
  padding: 8px 14px;
  color: var(--color-midnight-indigo);
  background: var(--color-snow-white);
  cursor: pointer;
}

.team-tabs button.active {
  color: var(--color-snow-white);
  border-color: var(--color-action-blue);
  background: var(--color-action-blue);
}

.team-panel {
  display: none;
  padding: 32px;
  border: 1px solid rgba(212, 224, 237, 0.7);
  background: rgba(255, 255, 255, 0.9);
}

.team-panel.active {
  display: block;
}

.data-protection-section {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
}

.data-protection-section::before {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.09) 0%, rgba(15, 118, 110, 0) 42%),
    linear-gradient(315deg, rgba(0, 107, 255, 0.065) 0%, rgba(0, 107, 255, 0) 44%),
    repeating-linear-gradient(0deg, rgba(15, 118, 110, 0.024) 0 1px, transparent 1px 22px);
}

.data-protection-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.data-protection-copy h2 {
  margin-top: 14px;
}

.data-protection-copy p,
.data-protection-note {
  color: var(--color-slate-blue);
}

.data-protection-copy p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
}

.compliance-console {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(212, 224, 237, 0.92);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.compliance-console::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0f766e, rgba(0, 107, 255, 0.24));
}

.console-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-pale-gray);
}

.console-head span {
  display: inline-grid;
  min-width: 66px;
  min-height: 66px;
  place-items: center;
  border-radius: 18px;
  color: var(--color-snow-white);
  background: var(--color-action-blue);
  font-weight: 800;
}

.console-head strong {
  color: var(--color-midnight-indigo);
  font-size: 20px;
  text-align: right;
}

.trust-metrics {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-metrics div {
  min-height: 96px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-radius: 14px;
  background: var(--color-cloud-mist);
}

.trust-metrics strong {
  color: var(--color-midnight-indigo);
  font-size: 22px;
  line-height: 1.1;
}

.trust-metrics span,
.data-protection-note {
  font-size: 13px;
}

.trust-metrics span {
  color: var(--color-slate-blue);
}

.console-track {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.console-track span {
  height: 8px;
  border-radius: 999px;
  background: var(--color-pale-gray);
}

.console-track span:nth-child(1) {
  width: 92%;
  background: linear-gradient(90deg, var(--color-action-blue), var(--color-skybound-blue));
}

.console-track span:nth-child(2) {
  width: 74%;
}

.console-track span:nth-child(3) {
  width: 58%;
}

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

.protection-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(212, 224, 237, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(71, 103, 136, 0.04) 0 10px 30px;
}

.protection-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: var(--color-action-blue);
  background: var(--color-pale-gray);
  font-weight: 800;
}

.protection-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.protection-grid p {
  margin-bottom: 0;
  color: var(--color-slate-blue);
}

.data-protection-note {
  margin: 16px 0 0;
}

.faq-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
}

.faq-section::before {
  background:
    linear-gradient(125deg, rgba(0, 107, 255, 0.075) 0%, rgba(0, 107, 255, 0) 42%),
    linear-gradient(300deg, rgba(255, 166, 0, 0.075) 0%, rgba(255, 166, 0, 0) 40%),
    repeating-linear-gradient(90deg, rgba(71, 103, 136, 0.022) 0 1px, transparent 1px 24px);
}

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

.faq-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

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

.faq-item p {
  margin: 12px 0 0;
  color: var(--color-slate-blue);
}

.compare-hero {
  max-width: 980px;
  padding-top: 108px;
  padding-bottom: 72px;
}

.compare-hero h1,
.compare-hero > p {
  max-width: 880px;
}

.compare-section,
.compare-best-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.long-tail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 44px;
  align-items: center;
  padding-top: 132px;
}

.long-tail-variant {
  --long-tail-accent: var(--color-action-blue);
  --long-tail-tint: var(--color-cloud-mist);
  --long-tail-panel: var(--color-midnight-indigo);
}

.long-tail-variant .eyebrow {
  color: var(--long-tail-accent);
  background: var(--long-tail-tint);
}

.long-tail-copy h1 {
  max-width: 820px;
  margin: 12px 0 22px;
  color: var(--color-midnight-indigo);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.long-tail-copy > p {
  max-width: 760px;
  color: var(--color-slate-blue);
  font-size: 19px;
  line-height: 1.75;
}

.long-tail-visual {
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(212, 224, 237, 0.82);
  border-radius: 8px;
  background: var(--long-tail-tint);
  box-shadow: var(--shadow-card);
}

.long-tail-device-stage img,
.long-tail-visual > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.long-tail-console {
  display: grid;
  gap: 14px;
}

.long-tail-console .mockup-topbar {
  border-color: rgba(255, 255, 255, 0.14);
}

.long-tail-mockup-command .long-tail-console,
.long-tail-mockup-attribution .long-tail-console {
  padding: 18px;
  border-radius: 8px;
  color: var(--color-snow-white);
  background: var(--long-tail-panel);
}

.long-tail-mockup-command .mockup-topbar strong,
.long-tail-mockup-attribution .mockup-topbar strong {
  color: var(--color-snow-white);
}

.long-tail-mockup-note {
  margin: 0;
  color: var(--color-slate-blue);
  line-height: 1.6;
}

.long-tail-mockup-command .long-tail-mockup-note,
.long-tail-mockup-attribution .long-tail-mockup-note {
  color: rgba(255, 255, 255, 0.78);
}

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

.long-tail-metrics article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(212, 224, 237, 0.82);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.long-tail-mockup-command .long-tail-metrics article,
.long-tail-mockup-attribution .long-tail-metrics article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.long-tail-metrics strong {
  display: block;
  color: var(--long-tail-accent);
  font-size: 24px;
  line-height: 1.15;
}

.long-tail-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--color-slate-blue);
  font-size: 12px;
  line-height: 1.35;
}

.long-tail-mockup-command .long-tail-metrics span,
.long-tail-mockup-attribution .long-tail-metrics span {
  color: rgba(255, 255, 255, 0.74);
}

.long-tail-console-rows {
  display: grid;
  gap: 10px;
}

.long-tail-console-row {
  padding: 18px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.long-tail-mockup-command .long-tail-console-row,
.long-tail-mockup-attribution .long-tail-console-row {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.long-tail-console-row span,
.long-tail-console-row p {
  color: var(--color-slate-blue);
}

.long-tail-mockup-command .long-tail-console-row span,
.long-tail-mockup-command .long-tail-console-row p,
.long-tail-mockup-attribution .long-tail-console-row span,
.long-tail-mockup-attribution .long-tail-console-row p {
  color: rgba(255, 255, 255, 0.72);
}

.long-tail-console-row span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--long-tail-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.long-tail-console-row strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.long-tail-mockup-command .long-tail-console-row strong,
.long-tail-mockup-attribution .long-tail-console-row strong {
  color: var(--color-snow-white);
}

.long-tail-console-row p {
  margin: 8px 0 0;
  line-height: 1.65;
}

.long-tail-mockup-ledger .long-tail-console-row,
.long-tail-mockup-documents .long-tail-console-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: start;
}

.long-tail-mockup-ledger .long-tail-console-row p,
.long-tail-mockup-documents .long-tail-console-row p {
  grid-column: 2;
}

.long-tail-mockup-service .long-tail-console-rows,
.long-tail-mockup-milestones .long-tail-console-rows {
  grid-template-columns: 1fr;
}

.long-tail-device-stage {
  position: relative;
  display: grid;
  gap: 14px;
}

.long-tail-device-overlay {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.long-tail-device-overlay div {
  padding: 12px;
  border: 1px solid rgba(212, 224, 237, 0.82);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.long-tail-device-overlay strong,
.long-tail-device-overlay span {
  display: block;
}

.long-tail-device-overlay strong {
  color: var(--long-tail-accent);
  font-size: 20px;
}

.long-tail-device-overlay span {
  color: var(--color-slate-blue);
  font-size: 12px;
}

.long-tail-scenario,
.long-tail-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 48px;
}

.long-tail-scenario-copy,
.long-tail-proof-copy {
  position: sticky;
  top: 104px;
}

.long-tail-scenario-copy h2,
.long-tail-proof-copy h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.long-tail-scenario-copy p,
.long-tail-proof-copy p {
  color: var(--color-slate-blue);
  font-size: 18px;
  line-height: 1.65;
}

.long-tail-scenario-grid,
.long-tail-proof-list {
  display: grid;
  gap: 12px;
}

.long-tail-scenario-grid article,
.long-tail-proof-list article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.long-tail-scenario-grid article {
  border-left: 4px solid var(--long-tail-accent);
}

.long-tail-scenario-grid span,
.long-tail-proof-list span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--long-tail-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.long-tail-scenario-grid strong,
.long-tail-proof-list strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.long-tail-scenario-grid p,
.long-tail-proof-list p {
  margin: 8px 0 0;
  color: var(--color-slate-blue);
  line-height: 1.65;
}

.long-tail-section {
  padding-top: 42px;
}

.long-tail-proof {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: var(--long-tail-tint);
}

.long-tail-proof-panel {
  display: grid;
  gap: 14px;
}

.long-tail-proof-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
}

.long-tail-proof-list span {
  margin: 0;
  justify-content: center;
}

.long-tail-page {
  --long-tail-accent: var(--color-action-blue);
  --long-tail-tint: var(--color-cloud-mist);
  --long-tail-panel: var(--color-midnight-indigo);
}

.long-tail-page .eyebrow {
  color: var(--long-tail-accent);
  background: var(--long-tail-tint);
}

.long-tail-page h1 {
  margin: 12px 0 22px;
  color: var(--color-midnight-indigo);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.long-tail-page h2 {
  margin: 12px 0 16px;
  color: var(--color-midnight-indigo);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.long-tail-page p {
  color: var(--color-slate-blue);
  line-height: 1.68;
}

.lt-command-hero,
.lt-ledger-hero,
.lt-map-hero,
.lt-desk-hero,
.lt-iot-hero,
.lt-document-hero,
.lt-milestone-hero,
.lt-growth-hero,
.lt-insight-hero,
.lt-cockpit-hero,
.lt-split-section,
.lt-context-panel,
.lt-proof-console,
.lt-proof-ledger,
.lt-proof-service,
.lt-proof-iot,
.lt-proof-project,
.lt-proof-growth,
.lt-proof-insight,
.lt-proof-platform {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 36px;
  align-items: center;
  padding-top: 124px;
}

.lt-split-section,
.lt-context-panel,
.lt-proof-console,
.lt-proof-ledger,
.lt-proof-service,
.lt-proof-iot,
.lt-proof-project,
.lt-proof-growth,
.lt-proof-insight,
.lt-proof-platform {
  padding-top: 64px;
  padding-bottom: 64px;
}

.lt-ai-console,
.lt-ledger-sheet,
.lt-attribution-map,
.lt-service-desk,
.lt-device-table,
.lt-doc-lane,
.lt-milestone-board,
.lt-growth-map,
.lt-editor-desk,
.lt-cockpit {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
}

.lt-ai-console,
.lt-attribution-map,
.lt-cockpit {
  color: var(--color-snow-white);
  background: var(--long-tail-panel);
}

.lt-terminal-grid,
.lt-ledger-metrics,
.lt-map-score,
.lt-device-kpis,
.lt-doc-metrics,
.lt-delivery-score,
.lt-growth-kpis,
.lt-radar,
.lt-cockpit-metrics,
.lt-risk-strip,
.lt-always-on,
.lt-signal-board,
.lt-platform-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lt-terminal-grid article,
.lt-ledger-metrics article,
.lt-map-score span,
.lt-device-kpis article,
.lt-doc-metrics article,
.lt-delivery-score article,
.lt-growth-kpis article,
.lt-radar article,
.lt-cockpit-metrics article,
.lt-risk-strip article,
.lt-always-on article,
.lt-signal-board article,
.lt-platform-pillars article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(212, 224, 237, 0.82);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.lt-terminal-grid article,
.lt-map-score span,
.lt-cockpit-metrics article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.lt-terminal-grid strong,
.lt-ledger-metrics strong,
.lt-map-score strong,
.lt-device-kpis strong,
.lt-doc-metrics strong,
.lt-delivery-score strong,
.lt-growth-kpis strong,
.lt-radar strong,
.lt-cockpit-metrics strong {
  display: block;
  color: var(--long-tail-accent);
  font-size: 24px;
  line-height: 1.15;
}

.lt-terminal-grid span,
.lt-map-score span,
.lt-cockpit-metrics span {
  color: rgba(255, 255, 255, 0.76);
}

.lt-token-table,
.lt-audit-stack,
.lt-receivable-grid,
.lt-source-grid,
.lt-ticket-queue,
.lt-device-signals,
.lt-doc-checklist,
.lt-deliverable-list,
.lt-growth-lanes,
.lt-brief-list,
.lt-governance-grid,
.lt-proof-grid,
.lt-proof-ledger > div:last-child,
.lt-proof-service > div,
.lt-proof-iot > div:last-child,
.lt-proof-project > div:last-child,
.lt-proof-growth > div:last-child,
.lt-proof-insight > div:last-child,
.lt-proof-platform > div:last-child {
  display: grid;
  gap: 12px;
}

.lt-token-table div,
.lt-audit-stack article,
.lt-receivable-grid article,
.lt-source-grid article,
.lt-ticket-queue article,
.lt-device-signals article,
.lt-doc-checklist article,
.lt-deliverable-list article,
.lt-growth-lanes article,
.lt-brief-list article,
.lt-governance-grid article,
.lt-proof-grid article,
.lt-proof-ledger article,
.lt-proof-service article,
.lt-proof-iot article,
.lt-proof-project article,
.lt-proof-growth article,
.lt-proof-insight article,
.lt-proof-platform article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(212, 224, 237, 0.88);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.lt-token-table div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.long-tail-page article span,
.lt-token-table span,
.lt-ledger-row span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--long-tail-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lt-token-table strong,
.lt-attribution-map strong,
.lt-cockpit strong {
  color: var(--color-snow-white);
}

.lt-token-table p,
.lt-attribution-map p,
.lt-cockpit p {
  color: rgba(255, 255, 255, 0.74);
}

.lt-ledger-sheet {
  background: linear-gradient(180deg, var(--color-snow-white), var(--long-tail-tint));
}

.lt-ledger-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--color-midnight-indigo);
}

.lt-ledger-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(212, 224, 237, 0.9);
}

.lt-ledger-row p {
  grid-column: 2;
  margin: 0;
}

.lt-cash-lane,
.lt-doc-flow,
.lt-project-timeline,
.lt-platform-flow,
.lt-insight-workflow,
.lt-sync-steps,
.lt-escalation-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lt-cash-lane article,
.lt-doc-flow article,
.lt-project-timeline article,
.lt-platform-flow article,
.lt-insight-workflow article,
.lt-sync-steps article,
.lt-escalation-lane article {
  padding: 20px;
  border: 1px solid rgba(212, 224, 237, 0.88);
  border-radius: 8px;
  background: var(--long-tail-tint);
}

.lt-attribution-map {
  display: grid;
  gap: 18px;
}

.lt-map-nodes,
.lt-growth-map,
.lt-cockpit-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lt-map-nodes article,
.lt-growth-map article,
.lt-cockpit-orbit article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lt-source-grid,
.lt-capability-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lt-capability-band article {
  padding: 20px;
  border: 1px solid rgba(212, 224, 237, 0.88);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.lt-service-desk {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  gap: 14px;
  background: var(--long-tail-tint);
}

.lt-service-desk aside {
  display: grid;
  gap: 12px;
}

.lt-service-desk aside div {
  padding: 16px;
  border-radius: 8px;
  color: var(--color-snow-white);
  background: var(--long-tail-panel);
}

.lt-device-table {
  display: grid;
  gap: 16px;
  justify-items: center;
  background: linear-gradient(180deg, var(--long-tail-tint), var(--color-snow-white));
}

.lt-device-table img {
  width: min(100%, 460px);
  height: auto;
  border-radius: 8px;
}

.lt-doc-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: var(--long-tail-tint);
}

.lt-doc-lane article {
  padding: 20px;
  border: 1px solid rgba(212, 224, 237, 0.88);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.lt-milestone-board {
  display: grid;
  gap: 12px;
  background: var(--long-tail-tint);
}

.lt-milestone-board article {
  padding: 16px;
  border-left: 4px solid var(--long-tail-accent);
  border-radius: 8px;
  background: var(--color-snow-white);
}

.lt-editor-desk {
  display: grid;
  gap: 14px;
  background: var(--color-snow-white);
}

.lt-editor-desk > article {
  padding: 18px;
  border: 1px solid rgba(212, 224, 237, 0.88);
  border-radius: 8px;
  background: var(--long-tail-tint);
}

.lt-proof-console,
.lt-proof-service,
.lt-proof-growth,
.lt-proof-platform {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: var(--long-tail-tint);
}

.compare-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: var(--color-cloud-mist);
}

.compare-table {
  min-width: 840px;
}

.insights-hero {
  max-width: 980px;
  padding-top: 108px;
  padding-bottom: 64px;
}

.insights-hero h1,
.insight-detail h1 {
  max-width: 920px;
}

.insights-hero p,
.insight-summary {
  max-width: 780px;
  color: var(--color-slate-blue);
  font-size: 18px;
  line-height: 1.62;
}

.insights-list-section {
  padding-top: 24px;
}

.insights-section-head {
  margin-bottom: 18px;
}

.insights-section-head h2 {
  margin: 8px 0 0;
  font-size: 30px;
}

.insights-popular {
  margin-bottom: 26px;
}

.insights-popular-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.insights-popular-list a {
  min-width: 0;
  min-height: 126px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
}

.insights-popular-list strong {
  color: var(--color-midnight-indigo);
  font-size: 16px;
  line-height: 1.35;
}

.insights-popular-list span,
.insights-result-count {
  color: var(--color-slate-blue);
  font-size: 13px;
}

.insights-search {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
}

.insights-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-midnight-indigo);
  font-weight: 800;
}

.insights-search div {
  display: flex;
  gap: 10px;
}

.insights-search input {
  min-width: 0;
  flex: 1;
  padding: 13px 14px;
  border: 1px solid rgba(189, 206, 222, 0.86);
  border-radius: 8px;
  font: inherit;
}

.insights-result-count {
  margin: 0 0 16px;
}

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

.insight-card,
.insights-empty {
  padding: 26px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
}

.insight-card span,
.insight-meta {
  color: var(--color-slate-blue);
  font-size: 13px;
}

.insight-card h2 {
  margin-top: 8px;
  font-size: 26px;
}

.insight-card p,
.insights-empty p,
.insight-detail p,
.insight-sources li {
  color: var(--color-slate-blue);
}

.insights-pagination {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.insights-pagination a,
.insights-pagination span {
  min-width: 42px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(189, 206, 222, 0.86);
  border-radius: 8px;
  background: var(--color-snow-white);
  color: var(--color-midnight-indigo);
  font-size: 14px;
  font-weight: 800;
}

.insights-pagination span {
  border-color: var(--color-action-blue);
  background: var(--color-action-blue);
  color: var(--color-snow-white);
}

.text-link {
  color: var(--color-action-blue);
  font-weight: 700;
}

.insight-detail {
  max-width: 960px;
  padding-top: 96px;
}

.insight-detail .eyebrow {
  margin-top: 24px;
}

.insight-author {
  margin-top: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: rgba(71, 103, 136, 0.04) 0 12px 30px;
}

.insight-author img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.insight-author strong,
.insight-author span {
  display: block;
}

.insight-author strong {
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.insight-author span,
.insight-editor-note,
.insight-audience {
  color: var(--color-slate-blue);
  font-size: 13px;
}

.insight-author p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.insight-meta {
  margin-top: 14px;
}

.insight-editor-note {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 224, 237, 0.8);
  border-left: 4px solid var(--color-glacier-blue);
  border-radius: 8px;
  background: rgba(248, 249, 251, 0.86);
}

.insight-summary {
  padding: 18px 20px;
  border-left: 4px solid var(--color-action-blue);
  border-radius: 8px;
  background: var(--color-cloud-mist);
  color: var(--color-midnight-indigo);
  font-weight: 700;
}

.insight-takeaways,
.insight-toc,
.insight-checklist,
.insight-faq article,
.insight-related a,
.insight-cta {
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: rgba(71, 103, 136, 0.04) 0 10px 26px;
}

.insight-takeaways,
.insight-toc,
.insight-checklist,
.insight-cta {
  margin-top: 28px;
  padding: 24px;
}

.insight-takeaways h2,
.insight-faq h2,
.insight-related h2,
.insight-cta h2 {
  font-size: 28px;
}

.insight-takeaways ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.insight-takeaways li {
  position: relative;
  padding-left: 28px;
  color: var(--color-midnight-indigo);
  font-weight: 700;
  line-height: 1.55;
}

.insight-takeaways li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-action-blue);
}

.insight-audience {
  margin-top: 18px;
}

.insight-audience strong {
  color: var(--color-midnight-indigo);
}

.insight-toc {
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.055), rgba(0, 107, 255, 0) 42%),
    var(--color-snow-white);
}

.insight-toc strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.insight-toc div,
.insight-checklist div,
.insight-cta div {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.insight-toc a,
.insight-checklist a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--color-action-blue);
  background: var(--color-pale-gray);
  font-weight: 800;
  line-height: 1.35;
}

.insight-detail section {
  margin-top: 34px;
}

.insight-detail section h2 {
  font-size: 28px;
}

.insight-detail section p {
  font-size: 17px;
  line-height: 1.76;
}

.insight-checklist {
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
}

.insight-faq article {
  margin-top: 14px;
  padding: 20px;
}

.insight-faq h3 {
  font-size: 20px;
}

.insight-related > div {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.insight-related a {
  min-width: 0;
  min-height: 150px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.insight-related strong,
.insight-related span {
  display: block;
}

.insight-related strong {
  color: var(--color-midnight-indigo);
  font-size: 17px;
  line-height: 1.35;
}

.insight-related span {
  color: var(--color-slate-blue);
  font-size: 13px;
  line-height: 1.5;
}

.insight-cta {
  margin-bottom: 32px;
  color: var(--color-snow-white);
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.24), rgba(130, 71, 245, 0.18)),
    var(--color-midnight-indigo);
}

.insight-cta h2,
.insight-cta p {
  color: var(--color-snow-white);
}

.insight-cta .eyebrow {
  color: var(--color-snow-white);
  background: rgba(255, 255, 255, 0.16);
}

.insight-sources ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.insight-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insight-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--color-glacier-blue);
  background: var(--color-pale-gray);
  font-size: 12px;
  font-weight: 700;
}

.admin-body {
  min-height: 100vh;
  background: var(--color-cloud-mist);
}

.admin-shell {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.admin-shell.wide {
  width: min(1120px, calc(100% - 32px));
}

.admin-panel {
  padding: 28px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
}

.admin-logo {
  width: 210px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-head h1,
.admin-panel h1 {
  margin-top: 12px;
  font-size: 34px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

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

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

.admin-form label,
.candidate-item {
  display: grid;
  gap: 8px;
  color: var(--color-midnight-indigo);
  font-weight: 700;
}

.admin-form .full,
.admin-submit {
  grid-column: 1 / -1;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--color-midnight-indigo);
  background: var(--color-cloud-mist);
  font: inherit;
}

.admin-form textarea {
  resize: vertical;
}

.admin-message {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.admin-message.error {
  color: #b42318;
  background: #fff1f0;
}

.admin-message.success {
  color: #027a48;
  background: #ecfdf3;
}

.admin-message.admin-progress {
  color: #175cd3;
  background: #eff8ff;
}

.admin-help {
  color: var(--color-slate-blue);
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-pale-gray);
  text-align: left;
}

.admin-table th {
  color: var(--color-midnight-indigo);
  background: var(--color-cloud-mist);
}

.admin-table td span {
  display: block;
  color: var(--color-slate-blue);
  font-size: 12px;
}

.admin-row-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-row-actions form {
  margin: 0;
}

.analytics-shell {
  width: calc(100% - 32px);
  max-width: none;
}

.analytics-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.analytics-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--color-slate-blue);
  background: var(--color-cloud-mist);
  font-size: 12px;
  font-weight: 700;
}

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

.analytics-kpis-primary {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.analytics-kpi,
.analytics-chart-card,
.analytics-table-card,
.analytics-section-card {
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: #fff;
}

.analytics-kpi {
  padding: 16px;
}

.analytics-kpi span {
  display: block;
  color: var(--color-slate-blue);
  font-size: 13px;
}

.analytics-kpi strong {
  display: block;
  margin-top: 8px;
  color: var(--color-midnight-indigo);
  font-size: 30px;
  line-height: 1;
}

.analytics-kpis-primary .analytics-kpi strong {
  font-size: 24px;
}

.analytics-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.analytics-section-card {
  padding: 16px;
}

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

.analytics-mini-kpis div {
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: var(--color-cloud-mist);
}

.analytics-mini-kpis span {
  display: block;
  color: var(--color-slate-blue);
  font-size: 12px;
  line-height: 1.35;
}

.analytics-mini-kpis strong {
  display: block;
  margin-top: 6px;
  color: var(--color-midnight-indigo);
  font-size: 22px;
  line-height: 1;
}

.analytics-note-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: #fff;
}

.analytics-note-panel h2 {
  margin: 0 0 8px;
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.analytics-note-panel p,
.analytics-note-panel ul {
  margin: 0;
  color: var(--color-slate-blue);
  font-size: 13px;
  line-height: 1.65;
}

.analytics-note-panel ul {
  padding-left: 18px;
}

.engagement-diagnostics.warning {
  border-color: rgba(185, 28, 28, 0.22);
  background: #fff8f3;
}

.engagement-diagnostics.warning h2 {
  color: #9f1239;
}

.seo-workbench {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: #fff;
}

.seo-kpis {
  margin: 16px 0;
}

.seo-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.seo-check-card {
  padding: 14px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 8px;
  background: var(--color-cloud-mist);
}

.seo-check-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--color-midnight-indigo);
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-check-card.status-watch span {
  color: #8a5b00;
  background: #fff3d6;
}

.seo-check-card strong {
  display: block;
  color: var(--color-midnight-indigo);
  font-size: 15px;
}

.seo-check-card p {
  margin: 6px 0 0;
  color: var(--color-slate-blue);
  font-size: 13px;
  line-height: 1.55;
}

.seo-import-panel {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 8px;
  background: var(--color-cloud-mist);
}

.seo-import-panel form,
.seo-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
}

.seo-import-panel label {
  display: grid;
  gap: 6px;
  color: var(--color-slate-blue);
  font-size: 12px;
  font-weight: 800;
}

.seo-import-panel input[type="file"] {
  min-width: 260px;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 8px;
  padding: 9px 10px;
  background: #fff;
}

.seo-import-panel p,
.seo-bulk-actions span {
  margin: 0;
  color: var(--color-slate-blue);
  font-size: 12px;
  line-height: 1.55;
}

.seo-action-status {
  padding: 10px 12px;
  border: 1px solid rgba(85, 131, 180, 0.35);
  border-radius: 8px;
  color: var(--color-midnight-indigo);
  background: #eef6ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.seo-action-status.success {
  border-color: rgba(47, 140, 92, 0.35);
  color: #14643a;
  background: #eaf8ef;
}

.seo-action-status.error {
  border-color: rgba(188, 76, 64, 0.38);
  color: #8a1f11;
  background: #ffeceb;
}

.seo-action-card {
  padding: 0;
  border: 0;
}

.seo-action-scroll {
  max-height: 520px;
}

.seo-action-table {
  min-width: 1180px;
}

.seo-action-table th,
.seo-action-table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.seo-action-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--color-slate-blue);
  background: #fff;
  font-size: 12px;
}

.seo-action-table td {
  color: var(--color-midnight-indigo);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.seo-action-table td:nth-child(1),
.seo-action-table td:nth-child(2) {
  width: 88px;
}

.seo-action-table td:nth-child(3) {
  width: 260px;
}

.seo-priority {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-priority.priority-high {
  color: #8a1f11;
  background: #ffe3de;
}

.seo-priority.priority-medium {
  color: #7a5200;
  background: #fff1cc;
}

.seo-priority.priority-low {
  color: var(--color-slate-blue);
  background: var(--color-cloud-mist);
}

.seo-target-bind {
  min-width: 260px;
  display: grid;
  gap: 8px;
}

.seo-target-bind select {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 8px;
  background: #fff;
  color: var(--color-midnight-indigo);
}

.seo-target-bind button {
  justify-self: start;
}

.analytics-filter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 10px;
  background: var(--color-cloud-mist);
}

.analytics-filter-form label {
  display: grid;
  gap: 6px;
  color: var(--color-slate-blue);
  font-size: 12px;
  font-weight: 800;
}

.analytics-filter-form input {
  min-width: 170px;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--color-midnight-indigo);
  background: #fff;
  font: inherit;
}

.analytics-chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.analytics-chart-card,
.analytics-table-card {
  padding: 16px;
  overflow: hidden;
}

.analytics-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.analytics-card-head h2 {
  margin: 0;
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

.analytics-card-head p,
.analytics-card-head strong {
  margin: 4px 0 0;
  color: var(--color-slate-blue);
  font-size: 13px;
}

.analytics-line-chart {
  display: block;
  width: 100%;
  height: auto;
  min-height: 250px;
}

.analytics-line-chart line {
  stroke: var(--color-platinum-tint);
  stroke-width: 1;
}

.analytics-line-chart .analytics-axis-line {
  stroke: #b8c7d9;
  stroke-width: 1.25;
}

.analytics-line-chart .analytics-axis-tick {
  stroke: #44658a;
  stroke-width: 1.8;
}

.analytics-line-chart polyline {
  fill: none;
  stroke: var(--chart-color, var(--color-glacier-blue));
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analytics-chart-point {
  fill: rgba(255, 255, 255, 0.01);
  stroke: transparent;
  cursor: crosshair;
}

.analytics-chart-point:hover,
.analytics-chart-point:focus {
  fill: var(--chart-color, var(--color-glacier-blue));
  stroke: #fff;
  stroke-width: 2;
}

.analytics-line-chart text {
  fill: var(--color-midnight-indigo);
  font-size: 13px;
  font-weight: 700;
  text-anchor: middle;
}

.analytics-empty {
  margin: 8px 0 0;
  color: var(--color-slate-blue);
  font-size: 13px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 16px;
}

.analytics-chart-tooltip {
  position: fixed;
  z-index: 80;
  display: none;
  max-width: 220px;
  padding: 8px 10px;
  border: 1px solid rgba(212, 224, 237, 0.95);
  border-radius: 8px;
  color: var(--color-midnight-indigo);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.analytics-chart-tooltip.open {
  display: block;
}

@media (max-width: 1180px) {
  .analytics-kpis-primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .analytics-section-grid,
  .analytics-note-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .analytics-kpis,
  .analytics-kpis-primary,
  .analytics-section-grid,
  .analytics-grid,
  .analytics-chart-grid {
    grid-template-columns: 1fr;
  }

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

.analytics-table-tools {
  display: grid;
  gap: 12px;
}

.analytics-table-tools label {
  display: grid;
  gap: 6px;
  color: var(--color-slate-blue);
  font-size: 12px;
  font-weight: 800;
}

.analytics-table-tools input {
  width: 100%;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--color-midnight-indigo);
  background: var(--color-cloud-mist);
  font: inherit;
}

.analytics-table-scroll {
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}

.admin-table.compact {
  min-width: 0;
  table-layout: fixed;
}

.admin-table.compact td {
  padding: 10px 0;
  vertical-align: top;
}

.admin-table.compact td:first-child {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-table.compact td:last-child {
  width: 90px;
  text-align: right;
  color: var(--color-midnight-indigo);
  font-weight: 800;
}

.analytics-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.analytics-pagination span {
  min-width: 84px;
  color: var(--color-slate-blue);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.analytics-pagination .btn {
  padding: 8px 12px;
}

.analytics-pagination .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.danger-link {
  padding: 0;
  border: 0;
  color: #b42318;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.danger-link:hover {
  color: #7a271a;
}

.candidate-list {
  display: grid;
  gap: 12px;
}

.candidate-item {
  grid-template-columns: 20px minmax(0, 1fr);
  padding: 14px;
  border: 1px solid var(--color-pale-gray);
  border-radius: 8px;
  background: var(--color-cloud-mist);
}

.candidate-item input {
  width: auto;
  margin-top: 4px;
}

.candidate-item strong,
.candidate-item em,
.candidate-item a {
  display: block;
}

.candidate-item em {
  color: var(--color-slate-blue);
  font-size: 12px;
  font-style: normal;
}

.candidate-item a {
  color: var(--color-action-blue);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.final-cta {
  width: min(1180px, calc(100% - 48px));
  margin-bottom: 64px;
  padding: 72px;
  border-radius: 24px;
  color: var(--color-snow-white);
  background: var(--color-midnight-indigo);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: var(--color-snow-white);
}

.final-cta .hero-actions {
  justify-content: center;
}

.terminal-page {
  overflow-x: hidden;
  overflow-y: auto;
}

.terminal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding-top: 104px;
}

.terminal-hero-copy {
  min-width: 0;
}

.terminal-hero-copy h1 {
  margin: 18px 0;
  color: var(--color-midnight-indigo);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
}

.terminal-hero-copy > p {
  max-width: 680px;
  color: var(--color-slate-blue);
  font-size: 19px;
  line-height: 1.7;
}

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

.terminal-proof article,
.terminal-download-card {
  min-width: 0;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: 0 18px 42px rgba(23, 37, 84, 0.08);
}

.terminal-proof article {
  padding: 16px;
}

.terminal-proof strong,
.terminal-proof span {
  display: block;
}

.terminal-proof strong {
  color: var(--color-midnight-indigo);
  font-size: 14px;
}

.terminal-proof span {
  margin-top: 7px;
  color: var(--color-slate-blue);
  font-size: 13px;
  line-height: 1.45;
}

.terminal-workspace {
  min-width: 0;
  border: 1px solid rgba(120, 144, 180, 0.24);
  border-radius: 8px;
  background: #0f172a;
  color: #e5eefc;
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.terminal-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.82);
}

.terminal-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
}

.terminal-window-bar span:nth-child(2) {
  background: #f59e0b;
}

.terminal-window-bar span:nth-child(3) {
  background: #22c55e;
}

.terminal-window-bar strong {
  margin-left: 8px;
  color: #f8fafc;
  font-size: 13px;
}

.terminal-screen {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.terminal-session {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.72);
}

.terminal-session span {
  color: #93c5fd;
  font-size: 12px;
  text-transform: uppercase;
}

.terminal-session code {
  color: #dbeafe;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.terminal-session .terminal-ok {
  color: #86efac;
}

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

.terminal-file-grid article {
  min-width: 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.88);
}

.terminal-file-grid strong,
.terminal-file-grid span {
  display: block;
}

.terminal-file-grid strong {
  color: #f8fafc;
  font-size: 13px;
}

.terminal-file-grid span {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.5;
}

.terminal-workspace > p {
  margin: 0;
  padding: 0 20px 20px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.55;
}

.terminal-downloads {
  display: grid;
  gap: 28px;
}

.terminal-download-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: var(--color-snow-white);
  box-shadow: var(--shadow-card);
}

.terminal-download-panel img {
  width: 128px;
  height: 128px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(23, 37, 84, 0.18);
}

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

.terminal-download-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: var(--color-slate-blue);
  text-decoration: none;
}

.terminal-download-card span,
.terminal-download-card em {
  color: var(--color-action-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.terminal-download-card strong {
  color: var(--color-midnight-indigo);
  font-size: 21px;
}

.terminal-download-card p {
  margin: 0;
  color: var(--color-slate-blue);
  line-height: 1.55;
}

.terminal-download-card:hover {
  border-color: rgba(34, 96, 255, 0.45);
  transform: translateY(-2px);
}

.terminal-manifest-link {
  margin: 0;
  text-align: center;
}

.terminal-manifest-link a {
  color: var(--color-action-blue);
  font-weight: 700;
}

.site-footer {
  padding: 32px 24px 36px;
  color: var(--color-slate-blue);
  border-top: 1px solid var(--color-pale-gray);
  background: var(--color-snow-white);
}

.site-footer strong,
.site-footer a {
  color: var(--color-midnight-indigo);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.footer-main {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.footer-main > strong {
  white-space: nowrap;
}

.footer-main > span {
  min-width: 0;
  line-height: 1.5;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 224, 237, 0.7);
}

.footer-group {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-group > strong {
  margin-bottom: 2px;
  color: var(--color-midnight-indigo);
  font-size: 13px;
  line-height: 1.35;
}

.footer-group a {
  min-width: 0;
  color: var(--color-slate-blue);
  font-size: 13px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.footer-group a:hover {
  color: var(--color-action-blue);
}

.footer-use-cases {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 224, 237, 0.7);
}

.footer-use-cases > strong {
  font-size: 13px;
  letter-spacing: 0;
}

.footer-use-cases > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-use-cases a {
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body.modal-open {
  overflow: hidden;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.demo-modal.open {
  display: flex;
}

.demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 53, 88, 0.46);
  backdrop-filter: blur(10px);
}

.demo-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: 30px;
  border: 1px solid rgba(212, 224, 237, 0.86);
  border-radius: 22px;
  background: var(--color-snow-white);
  box-shadow: rgba(11, 53, 88, 0.18) 0 24px 80px;
  overflow: auto;
}

.demo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--color-midnight-indigo);
  background: var(--color-pale-gray);
  font-size: 24px;
  line-height: 1;
}

.demo-dialog-head {
  padding-right: 42px;
}

.demo-dialog-head h2 {
  margin-top: 14px;
  font-size: 34px;
}

.demo-dialog-head p,
.demo-privacy,
.demo-message {
  color: var(--color-slate-blue);
}

.demo-form {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--color-midnight-indigo);
  font-weight: 700;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--color-midnight-indigo);
  background: var(--color-cloud-mist);
  font: inherit;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.demo-form textarea {
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--color-action-blue);
  background: var(--color-snow-white);
  box-shadow: 0 0 0 4px rgba(0, 107, 255, 0.1);
}

.demo-privacy,
.demo-message {
  margin: 0;
  font-size: 13px;
}

.demo-turnstile {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--color-platinum-tint);
  border-radius: 14px;
  background: rgba(246, 249, 252, 0.82);
}

.demo-turnstile[hidden] {
  display: none;
}

.demo-turnstile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-midnight-indigo);
  font-weight: 700;
}

.demo-turnstile-refresh {
  color: var(--color-action-blue);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.demo-turnstile-widget {
  min-height: 65px;
}

.demo-message[data-type="error"] {
  color: #b42318;
}

.demo-message[data-type="success"] {
  color: #027a48;
}

.demo-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.demo-actions .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

[dir="rtl"] .demo-close {
  left: 16px;
  right: auto;
}

[dir="rtl"] .demo-dialog-head {
  padding-left: 42px;
  padding-right: 0;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: min(560px, calc(100% - 48px));
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(212, 224, 237, 0.95);
  border-radius: 8px;
  color: var(--color-midnight-indigo);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--color-slate-blue);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .brand-logo {
    width: 176px;
    height: 52px;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
  }

  .site-nav.open {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 76px;
    padding: 18px;
    display: grid;
    gap: 12px;
    border: 1px solid var(--color-platinum-tint);
    border-radius: 16px;
    background: var(--color-snow-white);
    box-shadow: var(--shadow-card);
  }

  .site-nav.open .header-actions {
    display: grid;
    gap: 12px;
    margin-left: 0;
  }

  .site-nav.open .language-select,
  .site-nav.open .nav-cta {
    width: 100%;
  }

  .maintenance-notice {
    margin-bottom: -24px;
  }

  .hero,
  .terminal-hero,
  .long-tail-hero,
  .lt-command-hero,
  .lt-ledger-hero,
  .lt-map-hero,
  .lt-desk-hero,
  .lt-iot-hero,
  .lt-document-hero,
  .lt-milestone-hero,
  .lt-growth-hero,
  .lt-insight-hero,
  .lt-cockpit-hero,
  .lt-split-section,
  .lt-context-panel,
  .lt-proof-console,
  .lt-proof-ledger,
  .lt-proof-service,
  .lt-proof-iot,
  .lt-proof-project,
  .lt-proof-growth,
  .lt-proof-insight,
  .lt-proof-platform,
  .long-tail-scenario,
  .long-tail-proof,
  .apps-section,
  .industry-extension-section,
  .ai-section {
    width: min(1180px, calc(100% - 48px));
    grid-template-columns: 1fr;
  }

  .preview-console,
  .cost-shell {
    grid-template-columns: 1fr;
  }

  .long-tail-scenario-copy,
  .long-tail-proof-copy {
    position: static;
  }

  .promo-banner,
  .pricing-promo {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-banner .btn,
  .pricing-promo .btn {
    width: 100%;
  }

  .iot-section {
    padding: 82px 24px;
  }

  .iot-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .iot-copy h2 {
    font-size: 48px;
  }

  .iot-label {
    margin-top: 34px;
  }

  .iot-visual {
    min-height: auto;
  }

  .iot-device-stage {
    justify-self: center;
  }

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

  .hero-visual {
    min-height: 460px;
    padding-top: 0;
  }

  .hero-evidence {
    grid-template-columns: 1fr;
    grid-template-areas:
      "proof"
      "stats"
      "workflow";
    padding: 16px;
  }

  .flow-line,
  .feature-grid,
  .preview-flow,
  .trust-grid,
  .industry-extension-grid,
  .ai-platform-grid,
  .pillar-grid,
  .faq-grid,
  .management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .switching-shell {
    grid-template-columns: 1fr;
  }

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

  .pricing-showcase {
    grid-template-columns: 1fr;
  }

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

  .data-protection-shell {
    grid-template-columns: 1fr;
  }

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

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

  .terminal-proof,
  .terminal-file-grid,
  .terminal-download-grid {
    grid-template-columns: 1fr;
  }

  .terminal-download-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .final-cta {
    width: min(100% - 32px, 1180px);
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    min-height: auto;
  }

  .terminal-hero {
    width: min(100% - 32px, 1180px);
    gap: 28px;
    padding-top: 72px;
  }

  .terminal-hero-copy h1 {
    font-size: 40px;
  }

  .terminal-hero-copy > p {
    font-size: 16px;
  }

  .terminal-workspace,
  .terminal-download-panel {
    border-radius: 8px;
  }

  .terminal-download-panel {
    padding: 20px;
  }

  .promo-banner {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .promo-banner strong {
    font-size: 18px;
  }

  .pricing-promo {
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 10px;
  }

  .maintenance-notice {
    margin-top: 18px;
    margin-bottom: 0;
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .hero-value-points,
  .long-tail-metrics,
  .long-tail-device-overlay,
  .lt-terminal-grid,
  .lt-ledger-metrics,
  .lt-map-score,
  .lt-device-kpis,
  .lt-doc-metrics,
  .lt-delivery-score,
  .lt-growth-kpis,
  .lt-radar,
  .lt-cockpit-metrics,
  .lt-risk-strip,
  .lt-always-on,
  .lt-signal-board,
  .lt-platform-pillars,
  .lt-cash-lane,
  .lt-doc-flow,
  .lt-project-timeline,
  .lt-platform-flow,
  .lt-insight-workflow,
  .lt-sync-steps,
  .lt-escalation-lane,
  .lt-map-nodes,
  .lt-growth-map,
  .lt-cockpit-orbit,
  .lt-source-grid,
  .lt-capability-band,
  .lt-service-desk,
  .lt-doc-lane,
  .pipeline,
  .terminal-proof,
  .terminal-file-grid,
  .terminal-download-grid,
  .flow-line,
  .feature-grid,
  .preview-flow,
  .cost-scenarios,
  .resource-card-grid,
  .trust-grid,
  .industry-extension-grid,
  .ai-platform-grid,
  .app-grid,
  .saas-proof-strip,
  .pillar-grid,
  .faq-grid,
  .management-grid,
  .switching-grid {
    grid-template-columns: 1fr;
  }

  .cost-unit {
    min-height: 140px;
  }

  .cost-unit span {
    font-size: 30px;
  }

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

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

  .long-tail-visual {
    min-height: auto;
    padding: 16px;
  }

  .long-tail-mockup-ledger .long-tail-console-row,
  .long-tail-mockup-documents .long-tail-console-row,
  .lt-ledger-row,
  .long-tail-proof-list article {
    grid-template-columns: 1fr;
  }

  .long-tail-mockup-ledger .long-tail-console-row p,
  .long-tail-mockup-documents .long-tail-console-row p,
  .lt-ledger-row p {
    grid-column: auto;
  }

  .switching-shell {
    padding: 22px;
  }

  .pricing-showcase {
    padding: 14px;
    border-radius: 18px;
  }

  .iot-section {
    padding: 64px 16px;
  }

  .iot-brand-mark span {
    width: 38px;
    height: 38px;
  }

  .iot-copy h2 {
    font-size: 36px;
  }

  .iot-text {
    font-size: 17px;
  }

  .iot-device-stage {
    width: min(100%, 430px);
  }

  .iot-product-grid {
    grid-template-columns: 1fr;
  }

  .iot-shape-a {
    width: 280px;
    height: 280px;
    top: 230px;
    right: -80px;
  }

  .iot-shape-b {
    width: 150px;
    height: 150px;
    bottom: 220px;
    right: 18px;
  }

  .iot-shape-c {
    display: none;
  }

  .pricing-hero-card {
    padding: 22px;
    border-radius: 16px;
  }

  .pricing-rivals {
    grid-template-columns: 1fr;
  }

  .insights-popular-list,
  .insights-search div,
  .insight-related > div {
    grid-template-columns: 1fr;
  }

  .insights-popular-list {
    display: grid;
  }

  .insights-search div {
    display: grid;
  }

  .insight-author {
    grid-template-columns: 1fr;
  }

  .insight-takeaways,
  .insight-toc,
  .insight-checklist,
  .insight-cta {
    padding: 20px;
  }

  .insights-search .btn {
    width: 100%;
  }

  .pricing-compare-links {
    align-items: center;
    flex-direction: column;
  }

  .pricing-table {
    min-width: 760px;
  }

  .compare-table {
    min-width: 720px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 16px;
  }

  .trust-metrics,
  .protection-grid {
    grid-template-columns: 1fr;
  }

  .compliance-console {
    padding: 18px;
    border-radius: 18px;
  }

  .console-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-head strong {
    text-align: left;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual {
    display: block;
    min-height: auto;
  }

  .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-use-cases > div {
    grid-template-columns: 1fr;
  }

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

  .demo-modal {
    padding: 14px;
  }

  .demo-dialog {
    padding: 22px;
    border-radius: 18px;
  }

  .demo-dialog-head h2 {
    font-size: 28px;
  }

  .demo-actions {
    display: grid;
  }

  .admin-head,
  .admin-actions {
    display: grid;
    justify-content: stretch;
  }

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

  .analytics-kpis,
  .analytics-chart-grid,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions .btn {
    flex: 1;
  }
}

[dir="rtl"] .check-list li {
  padding-left: 0;
  padding-right: 28px;
}

[dir="rtl"] .check-list li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .pricing-table th,
[dir="rtl"] .pricing-table td {
  text-align: right;
}

[dir="rtl"] .pricing-table td.winner::before {
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .console-head strong {
  text-align: left;
}

@media (max-width: 680px) {
  [dir="rtl"] .console-head strong {
    text-align: right;
  }
}

/* Halmify Terminal product page */
body.terminal-page {
  overflow-x: hidden;
  overflow-y: auto;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #f3f8ff 100%);
}

body.terminal-page .section-shell {
  width: min(1500px, calc(100% - 72px));
  max-width: none;
}

body.terminal-page .terminal-hero {
  min-height: calc(100vh - 76px);
  padding-top: clamp(88px, 9vh, 136px);
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: stretch;
}

body.terminal-page .terminal-hero-copy {
  width: min(1180px, 100%);
}

body.terminal-page .terminal-hero-copy h1 {
  max-width: 1380px;
  margin: 18px 0 20px;
  color: var(--color-midnight-indigo);
  font-size: clamp(56px, 5.4vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

body.terminal-page .terminal-hero-copy p {
  max-width: 980px;
  margin: 0;
  color: var(--color-slate-blue);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.66;
}

body.terminal-page .terminal-hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.terminal-page .terminal-real-workspace {
  min-height: clamp(650px, 62vh, 820px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 320px;
  overflow: hidden;
  border: 1px solid rgba(11, 53, 88, 0.16);
  border-radius: 10px;
  background: #07111f;
  box-shadow: rgba(11, 53, 88, 0.20) 0 44px 120px;
}

body.terminal-page .terminal-real-sidebar {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  gap: 10px;
  padding: 22px;
  color: #e8f3ff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #09182a;
}

body.terminal-page .terminal-real-brand {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

body.terminal-page .terminal-real-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

body.terminal-page .terminal-real-sidebar button,
body.terminal-page .terminal-real-search,
body.terminal-page .terminal-real-actions span,
body.terminal-page .terminal-real-switch span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #dbeafe;
}

body.terminal-page .terminal-real-sidebar button {
  padding: 10px 12px;
  text-align: left;
}

body.terminal-page .terminal-real-search {
  padding: 10px 12px;
  color: #7f96b3;
  font-size: 12px;
}

body.terminal-page .terminal-real-sidebar ul {
  min-height: 0;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  list-style: none;
  overflow: hidden;
}

body.terminal-page .terminal-real-sidebar li {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 10px;
  padding: 11px;
  border-radius: 8px;
  color: #b8c9dd;
}

body.terminal-page .terminal-real-sidebar li.active {
  background: rgba(0, 107, 255, 0.18);
  color: #ffffff;
}

body.terminal-page .terminal-real-sidebar li span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0b3558;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
}

body.terminal-page .terminal-real-sidebar li strong,
body.terminal-page .terminal-real-sidebar li em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.terminal-page .terminal-real-sidebar li em {
  color: #7f96b3;
  font-style: normal;
  font-size: 12px;
}

body.terminal-page .terminal-real-main {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  background: #06111f;
}

body.terminal-page .terminal-real-toolbar,
body.terminal-page .terminal-real-tabs,
body.terminal-page .terminal-real-session-head {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.terminal-page .terminal-real-toolbar strong,
body.terminal-page .terminal-real-session-head strong {
  display: block;
  color: #f8fbff;
}

body.terminal-page .terminal-real-toolbar span,
body.terminal-page .terminal-real-session-head span {
  color: #8ea8c4;
  font-size: 12px;
}

body.terminal-page .terminal-real-actions,
body.terminal-page .terminal-real-switch,
body.terminal-page .terminal-real-tabs {
  display: flex;
  gap: 8px;
}

body.terminal-page .terminal-real-actions span,
body.terminal-page .terminal-real-switch span,
body.terminal-page .terminal-real-tabs span {
  padding: 7px 11px;
  color: #b8c9dd;
  font-size: 12px;
}

body.terminal-page .terminal-real-tabs {
  justify-content: flex-start;
  background: #0a1728;
}

body.terminal-page .terminal-real-tabs span {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

body.terminal-page .terminal-real-tabs span.active,
body.terminal-page .terminal-real-switch span.active {
  color: #ffffff;
  background: #006bff;
}

body.terminal-page .terminal-real-sftp {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
}

body.terminal-page .terminal-real-sftp section {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

body.terminal-page .terminal-real-sftp section:last-child {
  border-right: 0;
}

body.terminal-page .terminal-real-sftp header {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.terminal-page .terminal-real-sftp header strong {
  color: #f8fbff;
}

body.terminal-page .terminal-real-sftp header span {
  overflow: hidden;
  color: #7dd3fc;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

body.terminal-page .terminal-real-sftp table {
  width: 100%;
  border-collapse: collapse;
  color: #dbeafe;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

body.terminal-page .terminal-real-sftp td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}

body.terminal-page .terminal-real-sftp td:first-child {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.terminal-page .terminal-real-sftp td:nth-child(2),
body.terminal-page .terminal-real-sftp td:nth-child(3) {
  color: #8ea8c4;
  text-align: right;
}

body.terminal-page .terminal-real-sftp tr.selected {
  background: rgba(0, 107, 255, 0.2);
}

body.terminal-page .terminal-real-sftp i {
  width: 13px;
  height: 13px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: -2px;
  border-radius: 3px;
  background: #c5cfda;
}

body.terminal-page .terminal-real-sftp i.folder {
  background: #d6a846;
}

body.terminal-page .terminal-real-sftp i.archive {
  background: #ffa600;
}

body.terminal-page .terminal-real-sftp i.code {
  background: #00c2ff;
}

body.terminal-page .terminal-real-sftp i.app {
  background: #64d889;
}

body.terminal-page .terminal-real-progress {
  padding: 16px 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 22, 36, 0.96);
}

body.terminal-page .terminal-real-progress div,
body.terminal-page .terminal-real-progress p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

body.terminal-page .terminal-real-progress strong {
  color: #f8fbff;
}

body.terminal-page .terminal-real-progress div span,
body.terminal-page .terminal-real-progress p {
  color: #a6bbd1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

body.terminal-page .terminal-real-progress b {
  height: 9px;
  margin: 9px 0;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

body.terminal-page .terminal-real-progress b span {
  width: 68%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #00c2ff, #64d889);
}

body.terminal-page .terminal-real-progress p {
  margin: 0;
}

body.terminal-page .terminal-real-progress p span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.terminal-page .terminal-real-progress em {
  flex: 0 0 auto;
  font-style: normal;
}

body.terminal-page .terminal-real-ai {
  min-width: 0;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #f8fbff;
}

body.terminal-page .terminal-real-ai header {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 224, 237, 0.9);
}

body.terminal-page .terminal-real-ai header strong {
  color: var(--color-midnight-indigo);
}

body.terminal-page .terminal-real-ai header span {
  color: var(--color-slate-blue);
  font-size: 12px;
}

body.terminal-page .terminal-ai-bubble,
body.terminal-page .terminal-ai-command {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: #ffffff;
}

body.terminal-page .terminal-ai-bubble.user {
  border-color: rgba(0, 107, 255, 0.2);
  background: #eef6ff;
  color: var(--color-midnight-indigo);
}

body.terminal-page .terminal-ai-bubble.assistant strong,
body.terminal-page .terminal-ai-preview strong {
  color: var(--color-midnight-indigo);
}

body.terminal-page .terminal-ai-bubble code,
body.terminal-page .terminal-ai-command code,
body.terminal-page .terminal-ai-guard code {
  padding: 8px 10px;
  overflow-wrap: anywhere;
  border-radius: 7px;
  background: #07111f;
  color: #dbeafe;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

body.terminal-page .terminal-ai-bubble button,
body.terminal-page .terminal-ai-command button {
  justify-self: start;
  padding: 8px 12px;
  border: 1px solid var(--color-action-blue);
  border-radius: 8px;
  background: var(--color-action-blue);
  color: #ffffff;
  font-weight: 800;
}

body.terminal-page .terminal-proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.terminal-page .terminal-proof-strip article,
body.terminal-page .terminal-file-preview,
body.terminal-page .terminal-download-section {
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

body.terminal-page .terminal-proof-strip article {
  padding: 22px;
  display: grid;
  gap: 8px;
}

body.terminal-page .terminal-proof-strip strong {
  color: var(--color-midnight-indigo);
  font-size: 18px;
}

body.terminal-page .terminal-proof-strip span {
  color: var(--color-slate-blue);
}

body.terminal-page .terminal-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

body.terminal-page .terminal-section.dark {
  color: #ffffff;
  background: #0b3558;
}

body.terminal-page .terminal-section.dark .section-heading h2,
body.terminal-page .terminal-section.dark .feature-card h3 {
  color: #ffffff;
}

body.terminal-page .terminal-section.dark .section-heading p,
body.terminal-page .terminal-section.dark .feature-card p {
  color: rgba(255, 255, 255, 0.74);
}

body.terminal-page .terminal-section.dark .feature-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

body.terminal-page .terminal-feature-grid {
  margin-top: 42px;
}

body.terminal-page .terminal-split-section {
  display: grid;
  gap: 42px;
}

body.terminal-page .terminal-section-copy {
  max-width: 980px;
}

body.terminal-page .terminal-section-copy h2 {
  margin: 12px 0 16px;
  color: var(--color-midnight-indigo);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

body.terminal-page .terminal-section-copy p {
  margin: 0;
  color: var(--color-slate-blue);
  font-size: 20px;
  line-height: 1.68;
}

body.terminal-page .terminal-file-preview {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

body.terminal-page .file-pane {
  min-height: 180px;
  padding: 28px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: #f8f9fb;
}

body.terminal-page .file-pane.remote {
  color: #ffffff;
  border-color: rgba(0, 107, 255, 0.28);
  background: #0b3558;
}

body.terminal-page .file-pane strong,
body.terminal-page .file-pane span,
body.terminal-page .file-pane p {
  display: block;
}

body.terminal-page .file-pane strong {
  color: inherit;
  font-size: 18px;
}

body.terminal-page .file-pane span {
  margin-top: 8px;
  color: var(--color-action-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body.terminal-page .file-pane.remote span {
  color: #7dd3fc;
}

body.terminal-page .file-pane p {
  margin: 18px 0 0;
  color: var(--color-slate-blue);
}

body.terminal-page .file-pane.remote p {
  color: rgba(255, 255, 255, 0.74);
}

body.terminal-page .file-transfer-arrow {
  color: var(--color-action-blue);
  font-size: 32px;
  font-weight: 800;
}

body.terminal-page .terminal-ai-section {
  display: grid;
  gap: 42px;
  padding-top: 112px;
  padding-bottom: 112px;
  background: #f8fbff;
}

body.terminal-page .terminal-ai-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 22px;
}

body.terminal-page .terminal-ai-preview section {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(212, 224, 237, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

body.terminal-page .terminal-ai-preview p {
  margin: 0;
  color: var(--color-slate-blue);
  line-height: 1.62;
}

body.terminal-page .terminal-ai-guard {
  border-color: rgba(159, 18, 57, 0.2);
  background: #fff7f8;
}

body.terminal-page .terminal-ai-guard span {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffe4e6;
  color: #9f1239;
  font-size: 12px;
  font-weight: 800;
}

body.terminal-page .terminal-download-section {
  padding: 48px;
}

body.terminal-page .terminal-download-head {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

body.terminal-page .terminal-download-head img {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  box-shadow: rgba(11, 53, 88, 0.14) 0 16px 34px;
}

body.terminal-page .terminal-download-head h2 {
  margin: 6px 0 8px;
  color: var(--color-midnight-indigo);
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 0.98;
}

body.terminal-page .terminal-download-head p {
  margin: 0;
  color: var(--color-slate-blue);
}

body.terminal-page .terminal-download-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.terminal-page .terminal-download-card {
  min-height: 142px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(0, 107, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.terminal-page .terminal-download-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

body.terminal-page .terminal-download-card.external {
  border-color: rgba(15, 118, 110, 0.26);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0) 42%),
    #ffffff;
}

body.terminal-page .terminal-download-card strong {
  color: var(--color-midnight-indigo);
  font-size: 22px;
}

body.terminal-page .terminal-download-card p {
  margin: 0;
  color: var(--color-slate-blue);
  line-height: 1.58;
}

body.terminal-page .terminal-download-card span {
  color: var(--color-slate-blue);
}

@media (max-width: 980px) {
  body.terminal-page .terminal-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.terminal-page .terminal-real-workspace {
    min-height: 720px;
    grid-template-columns: 1fr;
  }

  body.terminal-page .terminal-real-sidebar {
    grid-template-rows: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.terminal-page .terminal-real-ai {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.terminal-page .terminal-real-sidebar ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.terminal-page .terminal-real-sftp,
  body.terminal-page .terminal-file-preview,
  body.terminal-page .terminal-ai-preview,
  body.terminal-page .terminal-download-grid,
  body.terminal-page .terminal-proof-strip {
    grid-template-columns: 1fr;
  }

  body.terminal-page .terminal-real-sftp section {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.terminal-page .file-transfer-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  body.terminal-page .terminal-hero-copy h1 {
    font-size: 40px;
  }

  body.terminal-page .terminal-real-workspace {
    margin-left: -8px;
    margin-right: -8px;
  }

  body.terminal-page .terminal-real-toolbar,
  body.terminal-page .terminal-real-session-head,
  body.terminal-page .terminal-real-progress div,
  body.terminal-page .terminal-real-progress p {
    align-items: flex-start;
    flex-direction: column;
  }

  body.terminal-page .terminal-real-tabs {
    overflow-x: auto;
  }

  body.terminal-page .terminal-real-sidebar ul {
    grid-template-columns: 1fr;
  }

  body.terminal-page .terminal-download-section {
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  body.terminal-page .terminal-download-head {
    grid-template-columns: 1fr;
  }
}
