/* ============================================================
   SYNE ONE — PLATFORM PAGE STYLESHEET
   Extends syne-shared.css with platform-specific components
   ============================================================ */

/* ── EXTRA TOKENS (platform1 referenced these from external CSS) ── */
:root {
  --white: #ffffff;
  --cyan-light: #38d1f5;
  --cyan-xpale: #f0fbfe;
  --emerald-xpale: #ecfdf5;
  --violet-xpale: #f5f3ff;
  --coral-dark: #be123c;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --border-mid: #cbd5e1;
  --nav-h: 64px;
  --dur: 0.18s;

  /* Radius scale */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-2xl: 24px;
  --r-full: 9999px;

  /* Shadow scale */
  --sh-xs: 0 1px 4px rgba(15, 23, 42, 0.05);
  --sh-sm: 0 2px 8px rgba(15, 23, 42, 0.07);
  --sh-md: 0 8px 24px rgba(15, 23, 42, 0.1);
  --sh-lg: 0 20px 48px rgba(15, 23, 42, 0.13);
  --sh-xl: 0 28px 72px rgba(15, 23, 42, 0.14);
  --sh-cyan: 0 6px 28px rgba(22, 192, 239, 0.28);
}

/* ── BACKGROUND HELPERS ────────────────────────────────────── */
.bg-white {
  background: var(--bg-white);
}
.bg-snow {
  background: var(--bg-snow);
}
.bg-frost {
  background: var(--bg-frost);
}
.bg-lilac {
  background: var(--bg-lilac);
}
.bg-mint {
  background: var(--bg-mint);
}
.bg-cream {
  background: var(--bg-cream);
}

/* ── NAV HAMBURGER (from both files) ──────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  .nav-hamburger {
    display: flex;
  }
}

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-white);
  padding: var(--nav-h) 0 0;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(22, 192, 239, 0.15) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  opacity: 0.5;
}
.page-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.phg1 {
  width: 600px;
  height: 600px;
  background: rgba(22, 192, 239, 0.11);
  top: -100px;
  right: -80px;
}
.phg2 {
  width: 400px;
  height: 400px;
  background: rgba(124, 92, 252, 0.07);
  bottom: 0;
  left: -100px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 28px 0;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.page-hero-inner .badge {
  margin-bottom: 20px;
}
.page-hero-inner h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.07;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero-inner h1 em {
  font-style: italic;
  color: var(--cyan);
}
.page-hero-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto 36px;
}
.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ── MODULE STRIP (6 clickable module cards below hero) ───── */
.strip-modules {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.sm-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition:
    box-shadow var(--dur),
    transform var(--dur),
    border-color var(--dur),
    background var(--dur);
}
.sm-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.sm-card.active {
  border-color: var(--cyan);
  background: var(--cyan-xpale);
  box-shadow: var(--sh-cyan);
}
.sm-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.sm-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.sm-desc {
  font-size: 0.67rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── STICKY PLATFORM TAB NAV ───────────────────────────────── */
.platform-tab-bar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ptb-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ptb-inner::-webkit-scrollbar {
  display: none;
}
.ptb-link {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  transition:
    color var(--dur),
    border-color var(--dur),
    background var(--dur);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.ptb-link:hover {
  color: var(--cyan-deep);
  background: var(--cyan-xpale);
}
.ptb-link.active {
  color: var(--cyan-deep);
  border-bottom-color: var(--cyan);
}
.ptb-icon {
  font-size: 0.9rem;
}

/* ── MODULE SECTION ────────────────────────────────────────── */
.module-section {
  padding: 96px 0;
}
.module-section.stripe-cyan {
  border-top: 3px solid var(--cyan);
}
.module-section.stripe-violet {
  border-top: 3px solid var(--violet);
}
.module-section.stripe-indigo {
  border-top: 3px solid var(--indigo);
}
.module-section.stripe-emerald {
  border-top: 3px solid var(--emerald);
}
.module-section.stripe-teal {
  border-top: 3px solid var(--teal);
}
.module-section.stripe-amber {
  border-top: 3px solid var(--amber);
}

/* Module header */
.mod-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.mod-header-left {
  max-width: 620px;
}
.mod-header-left h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: -0.028em;
  margin-bottom: 14px;
}
.mod-header-left h2 em {
  font-style: italic;
}
.mod-header-left p {
  font-size: 0.99rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.mod-header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}
.mod-stat-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 16px;
  box-shadow: var(--sh-xs);
}
.msc-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}
.msc-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Feature grid: 3 cols */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.feature-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.feature-tile:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.ft-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.ft-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}
.feature-tile h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  line-height: 1.3;
}
.feature-tile p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* Module layout: panel + content */
.module-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.module-layout-rev {
  direction: rtl;
}
.module-layout-rev > * {
  direction: ltr;
}

/* Rich demo panel */
.demo-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: sticky;
  top: calc(var(--nav-h) + 55px);
}
.dp2-bar {
  height: 4px;
}
.dp2-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dp2-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.dp2-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}
.dp2-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.dp2-live {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}
.dp2-live::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-g 2.4s ease-in-out infinite;
}
@keyframes pulse-g {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.dp2-body {
  padding: 16px 18px;
}

/* KPI grid in panel */
.panel-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}
.panel-kpi {
  background: var(--bg-frost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px;
  text-align: center;
}
.pkv {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}
.pkl {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.panel-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.panel-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.p-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  background: var(--bg-frost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.79rem;
  transition: background var(--dur);
}
.p-row:hover {
  background: var(--white);
}
.p-row-ico {
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.p-row-name {
  flex: 1;
  font-weight: 600;
  color: var(--ink);
}
.p-row-sub {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.p-row-info {
  flex: 1;
}
.p-row-badge {
  font-size: 0.63rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.p-row-val {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

.panel-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-bottom: 14px;
}
.pb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  height: var(--h, 40%);
}

.panel-track {
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 10px;
}
.panel-fill {
  height: 100%;
  border-radius: var(--r-full);
  width: var(--w, 50%);
}

.panel-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 9px 12px;
  margin-top: 9px;
}
.panel-chip > span {
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Feature list inside module layout */
.mod-feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 22px 0 28px;
}
.mfl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mfl-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.mfl-item h4 {
  font-size: 0.89rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.mfl-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS (from platform.html) ─────────────────────── */
.how-sec {
  padding: 80px 0;
  background: var(--bg-white);
}
.how-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  position: relative;
}
.how-flow::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--cyan-pale),
    var(--violet-pale),
    var(--indigo-pale),
    var(--emerald-pale)
  );
  z-index: 0;
}
.how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.hs-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--border);
}
.how-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WORKFLOW STEPS (from platform1) ────────────────────────── */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin: 48px 0;
}
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--cyan-pale),
    var(--cyan),
    var(--cyan-pale)
  );
}
.ws-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.ws-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin: 0 auto 14px;
  border: 2px solid var(--border);
  background: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-sm);
  transition:
    border-color var(--dur),
    transform var(--dur);
}
.ws-step:hover .ws-node {
  border-color: var(--cyan);
  transform: scale(1.1);
}
.ws-step h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.ws-step p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── PLATFORM ARCHITECTURE (from platform.html) ─────────────── */
.arch-sec {
  padding: 80px 0;
  background: var(--bg-snow);
}
.arch-sec.stripe-violet {
  border-top: 3px solid var(--violet);
}
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.arch-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.arch-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.arch-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.arch-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.arch-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.arch-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.compare-sec {
  padding: 96px 0;
}
.compare-table {
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.ct-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--bg-snow);
  border-bottom: 1.5px solid var(--border);
}
.ct-head-cell {
  padding: 18px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ct-head-cell.highlight {
  background: var(--cyan-xpale);
  color: var(--cyan-deep);
  text-align: center;
}
.ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur);
}
.ct-row:last-child {
  border-bottom: none;
}
.ct-row:hover {
  background: var(--bg-frost);
}
.ct-cell {
  padding: 14px 20px;
  font-size: 0.84rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-cell.feature {
  font-weight: 600;
  color: var(--ink);
}
.ct-cell.highlight {
  background: var(--cyan-xpale);
  justify-content: center;
}
.ct-yes {
  color: var(--emerald);
  font-size: 1rem;
}
.ct-no {
  color: var(--border-mid);
  font-size: 1rem;
}
.ct-partial {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── INTEGRATIONS ─────────────────────────────────────────── */
.integrations-full {
  padding: 96px 0;
}
.int-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.int-cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  overflow: hidden;
}
.icc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.icc-icon {
  font-size: 1.2rem;
}
.icc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.icc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.icc-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-frost);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--dur);
}
.icc-chip:hover {
  border-color: var(--cyan);
  background: var(--cyan-xpale);
  color: var(--cyan-deep);
}

/* ── API / DEV SECTION ───────────────────────────────────── */
.dev-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.code-block {
  background: #0a1628;
  border-radius: var(--r-xl);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.code-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.code-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cd-r {
  background: #f43f5e;
}
.cd-y {
  background: #f59e0b;
}
.cd-g {
  background: #10b981;
}
pre {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.8;
  overflow-x: auto;
}
.c-k {
  color: #7c5cfc;
}
.c-s {
  color: #4dd1f5;
}
.c-v {
  color: #10b981;
}
.c-c {
  color: #64748b;
}
.c-p {
  color: #f59e0b;
}
.c-t {
  color: #f8fafc;
}

/* ── SECURITY GRID ───────────────────────────────────────── */
.security-sec {
  padding: 96px 0;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.sec-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  text-align: center;
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.sec-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.sec-badge {
  font-size: 2rem;
  margin-bottom: 10px;
}
.sec-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.sec-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-sec {
  padding: 96px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.pricing-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: var(--sh-cyan);
  background: linear-gradient(180deg, var(--cyan-xpale) 0%, var(--white) 40%);
}
.pricing-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.pricing-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.pf-item::before {
  content: "✓";
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}
.pf-locked {
  color: var(--text-light) !important;
}
.pf-locked::before {
  content: "–";
  color: var(--border-mid) !important;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.platform-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--bg-ice) 0%, var(--bg-frost) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pcta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.pcg1 {
  width: 600px;
  height: 400px;
  background: rgba(22, 192, 239, 0.1);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.pcta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
}
.pcta-inner h2 {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.pcta-inner h2 em {
  font-style: italic;
  color: var(--cyan);
}
.pcta-inner p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.pcta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pcta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pcta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pcta-trust-item::before {
  content: "✓";
  color: var(--emerald);
  font-weight: 700;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .strip-modules {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .workflow-steps::before {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .int-cats {
    grid-template-columns: 1fr 1fr;
  }
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .module-layout {
    grid-template-columns: 1fr;
  }
  .module-layout-rev {
    direction: ltr;
  }
  .demo-panel {
    position: static;
  }
  .mod-header {
    flex-direction: column;
  }
  .mod-header-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .dev-layout {
    grid-template-columns: 1fr;
  }
  .how-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .how-flow::before {
    display: none;
  }
  .arch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ct-head,
  .ct-row {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .ct-head-cell:last-child,
  .ct-cell:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .strip-modules {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .workflow-steps {
    grid-template-columns: 1fr 1fr;
  }
  .int-cats {
    grid-template-columns: 1fr;
  }
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ct-head,
  .ct-row {
    grid-template-columns: 1fr 1fr;
  }
  .ct-head-cell:nth-child(3),
  .ct-head-cell:last-child,
  .ct-cell:nth-child(3),
  .ct-cell:last-child {
    display: none;
  }
  .page-hero-inner h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .strip-modules {
    grid-template-columns: 1fr 1fr;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  .security-grid {
    grid-template-columns: 1fr;
  }
  .how-flow {
    grid-template-columns: 1fr;
  }
  .arch-grid {
    grid-template-columns: 1fr;
  }
}
