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

html {
  scroll-behavior: smooth;
}

:root {
  /* Design tokens — warm amber/orange + deep charcoal */
  --paper: #FFFFFF;
  --off: #F9F8F6;
  --off2: #F2F0EC;
  --charcoal: #111827;
  --ch2: #1F2937;
  --amber: #FF6B00;
  --amber2: #E55F00;
  --amber-g: rgba(255, 107, 0, .07);
  --amber-m: rgba(255, 107, 0, .14);
  --red: #ff3d00;
  --purple: #7C3AED;
  --purple-g: rgba(124, 58, 237, .07);
  --teal: #00C9A7;
  --teal-g: rgba(0, 201, 167, .07);
  --ink: #374151;
  --muted: #9CA3AF;
  --border: #E5E7EB;
  --ok: #10B981;
  --warn: #F59E0B;
  --blue: #3B82F6;

  --pj: 'Poppins', sans-serif;
  --pp: 'Poppins', sans-serif;
  --mono: 'Poppins', monospace;

  --r6: 4px;
  --r10: 10px;
  --r14: 14px;
  --r20: 20px;
  --rpill: 999px;
  --s1: 0 1px 4px rgba(0, 0, 0, .05);
  --s2: 0 4px 20px rgba(0, 0, 0, .07);
  --s3: 0 12px 44px rgba(0, 0, 0, .09);
  --s4: 0 24px 72px rgba(0, 0, 0, .11);
}

body {
  font-family: var(--pp);
  background: var(--paper);
  color: #000000;
  overflow-x: hidden;
  line-height: 1.6;
}

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

button {
  cursor: pointer;
  font-family: var(--pp);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

.wrap-md {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 44px;
}

.sec {
  padding: 96px 0;
}

.sec-sm {
  padding: 68px 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pp);
  font-weight: 600;
  border-radius: var(--r10);
  border: none;
  transition: all .22s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-xl {
  font-size: 17px;
  padding: 18px 36px;
}

.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
}

.btn-md {
  font-size: 13px;
  padding: 12px 24px;
}

.btn-p {
  background: #000000;
  color: #fff;
}

.btn-p:hover {
  background: #e53600;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 61, 0, .4);
}

.btn-amb {
  background: #f59b32;
  color: #fff;
  box-shadow: 0 4px 22px rgba(255, 107, 0, .32);
}

.btn-amb:hover {
  background: var(--amber2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, .42);
}

.btn-dk {
  background: #000000;
  color: #fff;
}

.btn-dk:hover {
  background: var(--ch2);
  transform: translateY(-1px);
  box-shadow: var(--s2);
}

.btn-outline {
  background: transparent;
  color: #000000;
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: #000000;
  transform: translateY(-1px);
  box-shadow: var(--s2);
}

/* ANNOUNCE */
.ann {
  background: #000000;
  padding: 10px 0;
  text-align: center;
}

.ann-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
}

.ann-in span {
  color: rgba(255, 255, 255, .5);
}

.ann-in strong {
  color: #fff;
}

.ann-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: poppins;
  padding: 3px 10px;
  border-radius: var(--rpill);
}

.ann-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--s1);
}

.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-logo img {
  width: 112px;
  height: 30px;
  object-fit: contain;
}

.nav-lm {
  width: 45px;
  height: 45px;
  background: #f7f7f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-lm img {
  width: 70%;
}

.nav-lm span {
  font-family: poppins;
  font-weight: 600;
  font-size: 18px;
  color: var(--red);
}

.nav-lt {
  font-family: poppins;
  font-weight: 400;
  font-size: 23px;
  color: var(--navy);
}

.nav-lt em {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a,
.nav-db-btn {
  font-family: poppins;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  padding: 7px 14px;
  border-radius: 6px;
  transition: all .2s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover,
.nav-db-btn:hover {
  color: #ff3d00;
  background: #fff7f5;
}

.nav-dd {
  position: relative;
}

.nav-dd svg {
  transition: transform .2s;
}

.nav-dd:hover .nav-db-btn svg {
  transform: rotate(180deg);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 261px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r12);
  box-shadow: var(--s4);
  padding: 8px;
  width: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
}

.nav-mega a {
  margin: 5px 0;
  border-bottom: 1px solid #f1f1f1;
}

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

.nav-dd:hover .nav-mega {
  opacity: 1;
  visibility: visible;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: background .15s;
}

.mega-item:hover {
  background: var(--bg2);
}

.mega-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mega-title {
  font-family: poppins;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.mega-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}

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

/* ── NAV ── */
/*.nav-outer { position:sticky; top:0; z-index:300; background:rgba(255,255,255,.96); backdrop-filter:blur(18px); border-bottom:1px solid var(--border); }
.nav-inner { max-width:1200px; margin:0 auto; padding:0 44px; height:64px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.nav-logo { display:flex; align-items:center; gap:9px; }
.nav-logo-box { width:33px; height:33px; background:#000000; border-radius:9px; display:flex; align-items:center; justify-content:center; }
.nav-logo-box span { font-family:var(--pj); font-weight:600; font-size:17px; color:#f59b32; }
.nav-wordmark { font-family:var(--pj); font-weight:600; font-size:19px; color:#000000; letter-spacing:-.03em; }
.nav-wordmark em { color:#f59b32; font-style:normal; }
.nav-trail { display:flex; align-items:center; gap:6px; font-family:var(--mono); font-size:11px; color:var(--muted); background:var(--off); border:1px solid var(--border); padding:4px 14px; border-radius:var(--rpill); }
.nav-trail a { color:var(--ink); transition:color .2s; }
.nav-trail a:hover { color:#f59b32; }
.nav-trail .cur { color:#f59b32; font-weight:600; }
.nav-trail .sep { color:var(--border); }
.nav-r { display:flex; align-items:center; gap:10px; }*/

/* ── HERO ── */
/* Warm amber-tinted background, diagonal stripe motif */
.hero {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Amber glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, .09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-g);
  border: 1px solid var(--amber-m);
  border-radius: var(--rpill);
  padding: 5px 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f59b32;
  margin-bottom: 24px;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #f59b32;
  border-radius: 50%;
  animation: pambr 2s infinite;
}
.hero-kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pteal 2s infinite;
}
.nav-crumb {
  font-family: poppins;
  font-size: 11px;
  color: #606060;
  background: var(--paper2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--rpill);
  display: flex;
  align-items: center;
  gap: 6px;
   width: fit-content;
   margin-bottom: 30px;
}

.nav-crumb .cur {
  color: var(--red);
}
@keyframes pambr {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, .4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 107, 0, 0);
  }
}

.hero-h1 {
  font-family: var(--pj);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #000000;
  margin-bottom: 24px;
}

.hero-h1 .amb {
  color: #f59b32;
}

.hero-desc {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-desc strong {
  color: #000000;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ── WORKFLOW CANVAS WIDGET ── */
.canvas-widget {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r20);
  box-shadow: var(--s4);
  overflow: hidden;
}

.canvas-topbar {
  background: #000000;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.c-title {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  margin-left: 6px;
  flex: 1;
}

.c-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 10px;
  color: #f59b32;
}

.c-status-dot {
  width: 6px;
  height: 6px;
  background: #f59b32;
  border-radius: 50%;
  animation: pambr 1.8s infinite;
}

/* Node canvas area */
.canvas-area {
  background: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: var(--off);
  padding: 20px;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Workflow nodes */
.node-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.node {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r10);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  box-shadow: var(--s1);
  white-space: nowrap;
  position: relative;
  transition: all .2s;
}

.node:hover {
  box-shadow: var(--s2);
  transform: translateY(-1px);
}

.node-ico {
  font-size: 15px;
  flex-shrink: 0;
}

.node-label {
  font-family: var(--pp);
  font-size: 12px;
  font-weight: 600;
}

.node-sub {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}

.node-dot {
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: #f59b32;
  border-radius: 50%;
  border: 2px solid var(--paper);
}

.node-dot-l {
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: #000000;
  border-radius: 50%;
  border: 2px solid var(--paper);
}

/* Connector line (SVG-style with CSS) */
.connector {
  width: 28px;
  height: 2px;
  flex-shrink: 0;
  position: relative;
}

.connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg, #f59b32 0, #f59b32 4px, transparent 4px, transparent 8px);
}

.connector::after {
  content: '▶';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  font-size: 8px;
  color: #f59b32;
}

/* node colours */
.node-q {
  border-color: rgba(255, 107, 0, .3);
  background: #FFF8F5;
}

.node-q .node-dot {
  background: #f59b32;
}

.node-a {
  border-color: rgba(0, 201, 167, .3);
  background: #F0FDF9;
}

.node-a .node-dot {
  background: var(--teal);
}

.node-b {
  border-color: rgba(124, 58, 237, .3);
  background: #FAF5FF;
}

.node-b .node-dot {
  background: #f59b32;
}

.node-d {
  border-color: rgba(59, 130, 246, .3);
  background: #EFF6FF;
}

.node-d .node-dot {
  background: var(--blue);
}

.node-u {
  border-color: rgba(245, 158, 11, .3);
  background: #FFFBEB;
}

.node-u .node-dot {
  background: var(--warn);
}

.node-g {
  border-color: rgba(16, 185, 129, .3);
  background: #F0FDF9;
}

.node-g .node-dot {
  background: var(--ok);
}

.canvas-bottom {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.canvas-input-fake {
  flex: 1;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--rpill);
  padding: 9px 16px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--pp);
}

.canvas-send {
  width: 34px;
  height: 34px;
  background: #f59b32;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: transform .2s;
  color: #fff;
}

.canvas-send:hover {
  transform: scale(1.1);
}

/* ── MARQUEE ── */
.marquee {
  background: #000000;
  padding: 14px 0;
  overflow: hidden;
}

.mtrack {
  display: flex;
  animation: mq 24s linear infinite;
  width: max-content;
}

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

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

.mitem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  white-space: nowrap;
}

.mitem span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: #f6ece5;
}

.mdot {
  width: 4px;
  height: 4px;
  background: #f59b32;
  border-radius: 50%;
  opacity: .6;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r14);
  overflow: hidden;
  box-shadow: var(--s1);
  margin-top: 40px;
  margin-bottom: 40px;
}

.stat-cell {
  padding: 28px 24px;
  text-align: center;
  background: var(--paper);
}

.stat-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-val {
  font-family: var(--pj);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -.05em;
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── LOGOS ── */
.logo-band {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off);
}

.logo-lbl {
  font-family: poppins;
  font-size: 11px;
  color: #0a1628;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-chip {
  font-family: var(--pj);
  font-size: 13px;
  font-weight: 600;
  color: #0a1628;
  padding: 7px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r6);
  background: var(--paper);
  transition: all .2s;
  cursor: default;
}

.logo-chip:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ── DEFINITION ── */
.def-sec {
  background: var(--paper);
}

.def-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amber-g);
  border: 1px solid var(--amber-m);
  border-radius: var(--rpill);
  padding: 4px 14px;
  margin-bottom: 18px;
}

.sec-kicker span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f59b32;
}

.sec-h2 {
  font-family: var(--pj);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -.035em;
  color: #000000;
}

.sec-h2 em {
  color: #f59b32;
  font-style: normal;
}

.sec-h2 .purp {
  color: #f59b32;
}

.sec-body {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.8;
  margin-top: 16px;
}

.sec-body strong {
  color: #000000;
}

/* ── 6-STEP WORKFLOW TRACK ── */
.steps-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r14);
  overflow: hidden;
}

.wf-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
}

.wf-step:last-child {
  border-bottom: none;
}

.wf-step:hover {
  background: var(--off);
}

.wf-step-side {
  width: 64px;
  flex-shrink: 0;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wf-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pj);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.wf-step-body {
  padding: 18px 22px;
}

.wf-step-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f59b32;
  margin-bottom: 4px;
}

.wf-step-title {
  font-family: var(--pj);
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  margin-bottom: 5px;
}

.wf-step-desc {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.65;
}

/* ── NODES SHOWCASE ── */
.nodes-sec {
  background: #000000;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.nodes-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 24px,
      rgba(255, 255, 255, .015) 24px, rgba(255, 255, 255, .015) 25px);
  pointer-events: none;
}

.nodes-inner {
  position: relative;
  z-index: 2;
}

.nodes-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.nodes-h2 {
  font-family: var(--pj);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}

.nodes-h2 em {
  color: #f59b32;
  font-style: normal;
}

.nodes-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
}

.nodes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.node-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r14);
  padding: 28px 22px;
  transition: all .25s;
}

.node-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}

.nc-ico {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.nc-type {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nc-title {
  font-family: var(--pj);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}

.nc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.65;
}

/* ── AI CHAT INTERFACE SECTION ── */
.chat-sec {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.chat-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

.chat-panel {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r20);
  overflow: hidden;
  box-shadow: var(--s3);
}

.cp-top {
  background: linear-gradient(135deg, #000000, var(--ch2));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59b32, #FF9500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cp-name {
  font-family: var(--pj);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.cp-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 1px;
}

.cp-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ok);
}

.cp-live-dot {
  width: 7px;
  height: 7px;
  background: var(--ok);
  border-radius: 50%;
  animation: pambr 1.8s infinite;
}

.cp-msgs {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--off);
}

.cm-user {
  align-self: flex-end;
  max-width: 82%;
  background: #000000;
  color: #fff;
  border-radius: var(--r14) var(--r14) 4px var(--r14);
  padding: 11px 16px;
  font-size: 13px;
  line-height: 1.5;
}

.cm-lbl-u {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cm-ai {
  align-self: flex-start;
  max-width: 90%;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r14) var(--r14) var(--r14) 4px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.65;
  color: #000000;
  box-shadow: var(--s1);
}

.cm-lbl-a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #f59b32;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cm-hl {
  background: var(--amber-g);
  border-left: 3px solid #f59b32;
  padding: 8px 12px;
  border-radius: 0 var(--r6) var(--r6) 0;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink);
}

.cp-inp {
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
}

.cp-inp-fake {
  flex: 1;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--rpill);
  padding: 9px 16px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--pp);
}

.cp-send {
  width: 34px;
  height: 34px;
  background: #f59b32;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: transform .2s;
  color: #fff;
}

.cp-send:hover {
  transform: scale(1.1);
}

.chat-prompts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cp-prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r10);
  cursor: pointer;
  transition: all .2s;
  font-size: 13px;
  color: #000000;
}

.cp-prompt:hover {
  border-color: #f59b32;
  background: var(--amber-g);
}

.cp-prompt-ico {
  font-size: 16px;
}

.cp-prompt-arr {
  margin-left: auto;
  color: #f59b32;
  font-weight: 600;
}

/* ── AUDIENCE — 2×4 grid ── */
.aud-sec {
  background: var(--paper);
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: var(--r14);
  overflow: hidden;
  margin-top: 52px;
}

.ac {
  padding: 30px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
}

.ac:hover {
  background: var(--amber-g);
}

.ac:nth-child(4n) {
  border-right: none;
}

.ac:nth-child(5),
.ac:nth-child(6),
.ac:nth-child(7),
.ac:nth-child(8) {
  border-bottom: none;
}

.ac-ico {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.ac-role {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f59b32;
  margin-bottom: 7px;
}

.ac-title {
  font-family: var(--pj);
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  margin-bottom: 7px;
}

.ac-desc {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
}

/* ── FEATURES — Alternating strip layout ── */
.feat-strip {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.feat-row:last-child {
  border-bottom: none;
}

.feat-copy {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-visual {
  background: #000000;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.feat-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 20px, rgba(255, 255, 255, .02) 20px, rgba(255, 255, 255, .02) 21px);
  pointer-events: none;
}

.feat-row.flip .feat-visual {
  order: -1;
  background: var(--paper2, #F9F8F6);
}

.feat-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f59b32;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-kicker::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #f59b32;
  border-radius: 2px;
}

.feat-h3 {
  font-family: var(--pj);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -.03em;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.1;
}

.feat-h3 em {
  color: #f59b32;
  font-style: normal;
}

.feat-desc {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.feat-list li .flic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--amber-g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Dark panel cards */
.dp-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r10);
  padding: 15px 17px;
  position: relative;
}

.dp-card-title {
  font-family: var(--pj);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 4px;
}

.dp-card-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
}

.dp-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--rpill);
  letter-spacing: .05em;
}

.dpb-on {
  background: rgba(16, 185, 129, .15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, .2);
}

.dpb-live {
  background: rgba(255, 107, 0, .15);
  color: #f59b32;
  border: 1px solid rgba(255, 107, 0, .2);
}

.dp-bar {
  margin-top: 8px;
}

.dp-bar-out {
  height: 3px;
  background: rgba(255, 255, 255, .08);
  border-radius: 2px;
  overflow: hidden;
}

.dp-bar-in {
  height: 100%;
  border-radius: 2px;
}

/* Light feature visual cards */
.lv-card {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r10);
  padding: 15px 17px;
}

.lv-title {
  font-family: var(--pj);
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}

.lv-sub {
  font-size: 12px;
  color: var(--muted);
}

.lv-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lv-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--rpill);
}

/* ── ROI SECTION ── */
.roi-sec {
  background: var(--paper);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
  align-items: center;
}

.roi-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.roi-card {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r14);
  padding: 60px 80px;
  transition: all .25s;
}

.roi-card:hover {
  border-color: #f59b32;
  transform: translateY(-2px);
  box-shadow: var(--s2);
}

.roi-val {
  font-family: var(--pj);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -.06em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.roi-lbl {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}

/* ── COMPARE ── */
.cmp-sec {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--r14);
  overflow: hidden;
  box-shadow: var(--s2);
}

.cmp-table th {
  padding: 15px 20px;
  font-family: var(--pj);
  font-weight: 600;
  font-size: 13px;
}

.cmp-table th:first-child {
  background: var(--off2);
  color: #000000;
  text-align: left;
  width: 30%;
}

.cmp-table th:nth-child(2) {
  background: var(--off2);
  color: var(--muted);
  text-align: center;
}

.cmp-table th:nth-child(3) {
  background: #000000;
  color: #fff;
  text-align: center;
}

.cmp-table td {
  padding: 13px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cmp-table td:first-child {
  font-weight: 600;
  color: #000000;
  background: var(--paper);
}

.cmp-table td:nth-child(2) {
  color: var(--muted);
  text-align: center;
  background: var(--paper);
}

.cmp-table td:nth-child(3) {
  color: #000000;
  font-weight: 500;
  text-align: center;
  background: #F0FDF9;
}

.cmp-table tr:last-child td {
  border-bottom: none;
}

/* ── TESTI ── */
.testi-sec {
  background: var(--paper);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.tcard {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r14);
  padding: 32px;
  transition: all .25s;
}

.tcard:hover {
  border-color: #f59b32;
  box-shadow: var(--s3);
}

.tcard-mark {
  font-size: 42px;
  color: #f59b32;
  opacity: .2;
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.tcard-quote {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}

.tcard-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.tcard-name {
  font-family: var(--pj);
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.tcard-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-sec {
  background: var(--off);
  border-top: 1px solid var(--border);
}

.faq-wrap {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r14);
  padding: 22px 24px;
  cursor: pointer;
  transition: all .2s;
}

.faq-item:hover,
.faq-item.open {
  border-color: #f59b32;
}

.faq-q {
  font-family: var(--pj);
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.faq-icon {
  color: #f59b32;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-a {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.75;
  margin-top: 12px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── CTA ── */
.cta-sec {
  background: #000000;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 0, .09) 0%, transparent 70%);
  pointer-events: none;
}

.cta-in {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.cta-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f59b32;
  margin-bottom: 20px;
}

.cta-h2 {
  font-family: var(--pj);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 16px;
}

.cta-h2 em {
  color: #f59b32;
  font-style: normal;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
}

.cta-inp {
  flex: 1;
  font-family: var(--pp);
  font-size: 15px;
  color: #000000;
  background: var(--paper);
  border: none;
  border-radius: var(--r10);
  padding: 15px 20px;
  outline: none;
}

.cta-inp::placeholder {
  color: var(--muted);
}

.cta-btn {
  font-family: var(--pp);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #f59b32;
  border: none;
  padding: 15px 26px;
  border-radius: var(--r10);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(255, 107, 0, .4);
  transition: all .2s;
}

.cta-btn:hover {
  background: var(--amber2);
  transform: translateY(-1px);
}

.cta-fine {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .06em;
  font-weight: 500;
}

.cta-other {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
}

.cta-other a {
  color: #f59b32;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FOOTER */
footer {
  background: #ffeee8;
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-logo {
  width: 112px;
  height: 30px;
  object-fit: contain;
}

.foot-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 48px;
}

.foot-brand p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.foot-h {
  font-family: poppins;
  font-size: 11px;
  text-transform: uppercase;
  color: #ff3d00;
  margin-bottom: 16px;
  font-weight: 600;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 0px;
}

.foot-links a {
  font-size: 14px;
  color: #000000;
  transition: color .2s;
}

.foot-links a:hover {
  color: #ff3d00;
}

.foot-offices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.off-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #000000;
  line-height: 1.5;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.foot-copy {
  font-family: poppins;
  font-size: 12px;
  color: #000000;
}

.foot-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-c {
  font-family: poppins;
  font-size: 11px;
  color: #000000;
  border: 1px solid #ccc;
  padding: 4px 10px;
  border-radius: 4px;
}

.foot-soc {
  display: flex;
  gap: 8px;
}

.soc-b {
  padding: 6px 15px;
  background: rgba(0, 0, 0, 0.6); /* darker */
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.soc-b:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--paper2);
}

::-webkit-scrollbar-thumb {
  background: #F59E0B;
  border-radius: 2px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {

  .wrap,
  .wrap-md {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .def-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chat-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .ac:nth-child(4n) {
    border-right: 1px solid var(--border);
  }

  .ac:nth-child(2n) {
    border-right: none;
  }

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

  .feat-row {
    grid-template-columns: 1fr;
  }

  .feat-row.flip .feat-visual {
    order: 0;
  }

  .feat-visual {
    min-height: 240px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .cta-form {
    flex-direction: column;
  }

  nav .nav-trail {
    display: none;
  }

  .hero-bg-num {
    display: none;
  }
}

@media(max-width:640px) {
  .sec {
    padding: 64px 0;
  }

  .aud-grid {
    grid-template-columns: 1fr;
  }

  .ac {
    border-right: none !important;
  }

  .nodes-grid {
    grid-template-columns: 1fr;
  }

  .roi-nums {
    grid-template-columns: 1fr;
  }
}
/* ── PRICING SECTION ── */
.price-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

/* ── CONTROLS ROW ── */
.price-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 36px 0 44px;
    flex-wrap: wrap;
}

/* Currency selector */
.currency-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--rpill);
    padding: 4px;
    box-shadow: var(--s1);
}

.curr-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: var(--rpill);
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: poppins;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    transition: all .2s;
    white-space: nowrap;
}

.curr-btn .flag {
    font-size: 16px;
    line-height: 1;
}

.curr-btn.active {
    background: #000000;
    color: #fff;
    box-shadow: var(--s1);
}

.curr-btn:not(.active):hover {
    background: var(--bg2);
    color: #000;
}

/* Billing toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ptl {
    font-family: poppins;
    font-size: 13px;
    color: var(--text2);
    font-weight: 500;
}

.ptl.active-label {
    color: #000;
    font-weight: 600;
}

.ptrack {
    width: 48px;
    height: 26px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--rpill);
    cursor: pointer;
    position: relative;
    transition: background .2s;
    flex-shrink: 0;
}

.ptrack.on {
    background: var(--red);
}

.pknob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: var(--s1);
}

.ptrack.on .pknob {
    transform: translateX(22px);
}

/* Divider */
.ctrl-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ── PRICING GRID ── */
.price-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    transition: opacity .25s ease;
}

.price-g.fading {
    opacity: 0;
}

.pcard {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    padding: 36px;
    position: relative;
    transition: all .25s;
}

.pcard:hover {
    box-shadow: var(--s3);
}

.pcard.feat {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 61, 0, .06), var(--s3);
    transform: scale(1.03);
}

.ppop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: poppins;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: var(--rpill);
    white-space: nowrap;
}

.ptier {
    font-family: poppins;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    letter-spacing: .08em;
}

/* Price display */
.price-display {
    min-height: 68px;
    margin-bottom: 6px;
}

.pamt {
    font-family: poppins;
    font-weight: 800;
    font-size: 48px;
    color: #000000;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.pamt-symbol {
    font-size: 24px;
    font-weight: 700;
    margin-top: 6px;
    color: var(--text2);
}

.pamt-custom {
    font-family: poppins;
    font-weight: 800;
    font-size: 40px;
    color: #000000;
    line-height: 1;
    padding-top: 8px;
}

/* Description + period */
.pper {
    font-family: poppins;
    margin-bottom: 20px;
    line-height: 1.55;
}

.pper-desc {
    display: block;
    font-size: 13px;
    color: var(--text2);
    font-style: italic;
    margin-bottom: 5px;
}

.pper-period {
    display: block;
    font-size: 11px;
    color: var(--muted);
}

/* Skeleton */
.price-skeleton {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    height: 48px;
    width: 140px;
    margin-bottom: 6px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Features */
.pfeats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.pfeats li {
    font-size: 14px;
    color: var(--text2);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.4;
}

.pfeats li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

.pfeats li.feat-hidden {
    display: none;
}

/* Show more toggle */
.feat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: poppins;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
    margin-bottom: 22px;
    transition: opacity .15s;
    line-height: 1;
}

.feat-toggle:hover {
    opacity: .7;
}

.feat-toggle svg {
    flex-shrink: 0;
    transition: transform .2s;
}

.feat-toggle.expanded svg {
    transform: rotate(180deg);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .price-g {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pcard.feat {
        transform: none;
    }

    .price-controls {
        gap: 16px;
    }
}

@media(max-width:640px) {
    .curr-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .ctrl-divider {
        display: none;
    }

    .price-controls {
        flex-direction: column;
        gap: 14px;
    }
}
/* New Chnage Log Section */
@media (max-width: 767px) {
  .compare-section .wrap {
    overflow: hidden;
  }

  .cmp-table {
    width: 100%;
    margin-top: 28px;
    border: none;
    box-shadow: none;
    border-collapse: separate;
    border-spacing: 0 16px;
  }

  .cmp-table thead {
    display: none;
  }

  .cmp-table,
  .cmp-table tbody,
  .cmp-table tr,
  .cmp-table td {
    display: block;
    width: 100%;
  }

  .cmp-table tr {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--s2);
  }

  .cmp-table td {
    display: block;
    text-align: left !important;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
  }

  .cmp-table td:last-child {
    border-bottom: none;
  }

  /* labels */
  .cmp-table td:nth-child(1)::before,
  .cmp-table td:nth-child(2)::before,
  .cmp-table td:nth-child(3)::before {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .cmp-table td:nth-child(1)::before {
    content: "Capability";
    color: #000;
  }

  .cmp-table td:nth-child(2)::before {
    content: "Other AI Platforms";
    color: var(--muted);
  }

  .cmp-table td:nth-child(3)::before {
    content: "✦ Meii Agentic AI";
    color: #000;
  }

  /* reset desktop backgrounds */
  .cmp-table td:first-child,
  .cmp-table td:nth-child(2),
  .cmp-table td:nth-child(3) {
    background: #fff;
  }
}

@media (max-width: 480px) {
  .cmp-table td {
    padding: 12px 14px;
    font-size: 12px;
  }

  .cmp-table td::before {
    font-size: 10px !important;
  }
  .feat-copy {
    padding: 52px 8px;
}
.hero-h1 {
    font-size: 34px;
    line-height: 1.2;
}
}

@media (max-width: 320px) {
  .cmp-table td {
    padding: 10px 12px;
    font-size: 11px;
  }
}
@media (max-width: 400px) {
  .feat-visual {
    padding: 40px 10px;
}
.feat-row {
    padding: 0px 20px;
}
.dp-badge {
    top: 18px;
    right: 4px;
    font-size: 7px;
    padding: 0px 5px;
}
}