/* ─────────────────────────────────────────────────────────
   Home page — additional sections aligned to blueprint §9.1
   Only show when data-hero="e" (loaded with hero-e variant)
   ───────────────────────────────────────────────────────── */

[data-hero="d"] .he-sec { display: none; }

.he-sec {
  background: var(--he-bg);
  padding: 72px 0;
  border-top: 1px solid var(--he-rule);
}
.he-sec.alt { background: white; }
.he-sec.dark { background: var(--he-ink); color: white; border-top: none; }
.he-sec .wrap {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}
.he-sec .sec-head {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}
.he-sec .sec-head .kicker {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--he-coral);
  margin-bottom: 12px;
}
.he-sec.dark .sec-head .kicker { color: color-mix(in srgb, var(--he-coral) 80%, white); }
.he-sec .sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 500;
  color: inherit;
  margin: 0 0 14px;
}
.he-sec .sec-head h2 em {
  font-family: var(--font-display-serif);
  font-style: italic; font-weight: 400; color: var(--he-coral);
}
.he-sec.dark .sec-head h2 em { color: color-mix(in srgb, var(--he-coral) 90%, white); }
.he-sec .sec-head p {
  font-size: 16px; line-height: 1.6;
  color: var(--he-ink-soft);
  max-width: 580px; margin: 0 auto;
}
.he-sec.dark .sec-head p { color: rgba(255,255,255,0.65); }

/* ─── Stats bar ─────────────────────────────────────────── */
.he-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--he-shadow-card-soft);
}
.he-stats .col {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--he-rule);
}
.he-stats .col:last-child { border-right: none; }
.he-stats .v {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500; letter-spacing: -0.03em;
  color: var(--he-ink);
}
.he-stats .v em { font-family: var(--font-display-serif); font-style: italic; font-weight: 400; color: var(--he-coral); }
.he-stats .v sup { font-size: 0.45em; color: var(--he-coral); vertical-align: super; margin-left: 4px; font-family: var(--font-mono); font-weight: 500; }
.he-stats .l {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-ink-soft);
  margin-top: 6px;
}
@media (max-width: 700px) {
  .he-stats { grid-template-columns: 1fr 1fr; }
  .he-stats .col:nth-child(2) { border-right: none; }
  .he-stats .col:nth-child(1), .he-stats .col:nth-child(2) { border-bottom: 1px solid var(--he-rule); }
}

/* ─── Problem framing — pain tiles ──────────────────────── */
.he-pain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.he-pain .tile {
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 18px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
}
.he-pain .tile::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--he-coral), color-mix(in srgb, var(--he-coral) 30%, transparent));
}
.he-pain .tile .num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-coral);
  font-weight: 500;
}
.he-pain .tile h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--he-ink); margin: 0;
  line-height: 1.25;
}
.he-pain .tile p {
  font-size: 13px; line-height: 1.55;
  color: var(--he-ink-soft); margin: 0;
}
@media (max-width: 1000px) {
  .he-pain { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .he-pain { grid-template-columns: 1fr; }
}

/* ─── 6-pillar grid (redesigned) ────────────────────────── */
.he-pillars-6 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.he-p6 {
  position: relative;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 22px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.he-p6:hover {
  border-color: rgba(14,16,24,0.18);
  transform: translateY(-3px);
  box-shadow: var(--he-shadow-card);
}
.he-p6::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 240px; height: 240px;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--he-coral) 18%, transparent), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.he-p6:hover::before { opacity: 1; }
.he-p6 .num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--he-coral); font-weight: 500;
}
.he-p6 .ti {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--he-ink); margin: 0;
  line-height: 1.2;
}
.he-p6 .desc {
  color: var(--he-ink-soft); font-size: 14px; line-height: 1.55;
  margin: 0;
}
.he-p6 .proof {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--he-rule);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--he-ink);
}
.he-p6 .proof b { color: var(--he-coral); font-weight: 500; }
@media (max-width: 1000px) {
  .he-pillars-6 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .he-pillars-6 { grid-template-columns: 1fr; }
}

/* ─── Savings calculator (static visual) ────────────────── */
.he-calc {
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--he-shadow-card-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.he-calc .left {
  padding: 32px;
  background: var(--he-bg);
  border-right: 1px solid var(--he-rule);
}
.he-calc .left .label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-ink-soft);
  margin-bottom: 18px;
}
.he-calc .left .stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.he-calc .left .row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 12px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--he-ink);
}
.he-calc .left .row .lg {
  width: 30px; height: 22px; border-radius: 6px; flex: 0 0 30px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  color: white;
}
.he-calc .left .row .nm { flex: 1; }
.he-calc .left .row .cost {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--he-ink-soft);
}
.he-calc .left .row.strike .nm,
.he-calc .left .row.strike .cost { text-decoration: line-through; color: var(--he-ink-soft); }
.he-calc .left .total {
  margin-top: 8px;
  padding: 14px 18px;
  background: var(--he-ink); color: white;
  border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.he-calc .left .total .l { font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; }
.he-calc .left .total .v { font-family: var(--font-display); font-size: 22px; font-weight: 500; }

.he-calc .right { padding: 32px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.he-calc .right .arrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-coral);
}
.he-calc .right .big {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500; letter-spacing: -0.03em;
  color: var(--he-ink); line-height: 1.05;
}
.he-calc .right .big em { font-family: var(--font-display-serif); font-style: italic; font-weight: 400; color: var(--he-coral); }
.he-calc .right .sub { font-size: 14px; color: var(--he-ink-soft); line-height: 1.55; }
.he-calc .right .savings {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: color-mix(in srgb, var(--he-coral) 12%, transparent);
  border-radius: 999px;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--he-coral);
  align-self: flex-start;
}
.he-calc .right .savings .v { font-family: var(--font-display); }
@media (max-width: 800px) {
  .he-calc { grid-template-columns: 1fr; }
  .he-calc .left { border-right: none; border-bottom: 1px solid var(--he-rule); }
}

/* ─── Industries grid ───────────────────────────────────── */
.he-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.he-ind {
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 16px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: all 0.25s ease;
}
.he-ind:hover {
  border-color: var(--he-coral);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--he-coral) 30%, transparent);
}
.he-ind .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: color-mix(in srgb, var(--he-coral) 12%, white);
  color: var(--he-coral);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  margin-bottom: 4px;
}
.he-ind .nm { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--he-ink); }
.he-ind .desc { font-size: 12px; color: var(--he-ink-soft); line-height: 1.4; }
@media (max-width: 1000px) {
  .he-ind-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Integration marquee ───────────────────────────────── */
.he-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--he-rule);
  border-bottom: 1px solid var(--he-rule);
  background: white;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}
.he-marquee .track {
  display: flex; gap: 48px;
  animation: heMarquee 36s linear infinite;
  width: max-content;
}
.he-marquee .item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--he-rule);
  border-radius: 999px;
  background: white;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--he-ink);
  white-space: nowrap;
}
.he-marquee .item .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--he-coral);
}
@keyframes heMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Comparison snapshot ───────────────────────────────── */
.he-comp {
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 22px;
  overflow: hidden;
}
.he-comp table { width: 100%; border-collapse: collapse; }
.he-comp th, .he-comp td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--he-rule);
  font-family: var(--font-body);
  font-size: 14px;
}
.he-comp th:first-child, .he-comp td:first-child { text-align: left; font-weight: 500; }
.he-comp thead th {
  background: var(--he-bg);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-ink-soft);
  font-weight: 500;
}
.he-comp thead th.us {
  background: var(--he-ink); color: white;
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: -0.01em;
  text-transform: none;
}
.he-comp tbody tr:last-child td { border-bottom: none; }
.he-comp td.us { background: color-mix(in srgb, var(--he-coral) 5%, white); font-weight: 500; }
.he-comp .yes { color: var(--he-coral); font-size: 18px; }
.he-comp .no { color: rgba(14,16,24,0.25); font-size: 18px; }
.he-comp .partial { color: var(--he-ink-soft); font-family: var(--font-mono); font-size: 11px; }
.he-comp tfoot td { text-align: center; padding: 24px; background: var(--he-bg); }

/* ─── Developer code section ────────────────────────────── */
.he-dev {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.he-dev .text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1; letter-spacing: -0.025em; font-weight: 500;
  margin: 0 0 16px;
  color: inherit;
}
.he-dev .text h2 em { font-family: var(--font-display-serif); font-style: italic; color: color-mix(in srgb, var(--he-coral) 90%, white); font-weight: 400; }
.he-dev .text p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.6; margin: 0 0 24px; }
.he-dev .text .ftrs { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.he-dev .text .ftr { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.5; }
.he-dev .text .ftr::before { content: "→"; color: var(--he-coral); font-family: var(--font-display); font-weight: 500; flex: 0 0 16px; }
.he-dev .text b { color: white; font-weight: 600; }

.he-dev .code {
  background: #0A0C12;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.he-dev .code .head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.he-dev .code .head .dots { display: flex; gap: 6px; }
.he-dev .code .head .dots span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.he-dev .code .head .dots span:first-child { background: #FF5F57; }
.he-dev .code .head .dots span:nth-child(2) { background: #FEBC2E; }
.he-dev .code .head .dots span:nth-child(3) { background: #28C840; }
.he-dev .code .head .file { margin-left: auto; }
.he-dev .code pre {
  margin: 0; padding: 20px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  overflow-x: auto;
}
.he-dev .code .ln { color: rgba(255,255,255,0.25); margin-right: 14px; user-select: none; }
.he-dev .code .com { color: rgba(255,255,255,0.4); }
.he-dev .code .kw { color: #C7A8FF; }
.he-dev .code .fn { color: #6BD3C5; }
.he-dev .code .str { color: #FF8A6E; }
.he-dev .code .num { color: #FFCB6B; }
@media (max-width: 900px) {
  .he-dev { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Pricing teaser ────────────────────────────────────── */
.he-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.he-tier {
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 20px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.25s ease;
  position: relative;
}
.he-tier.featured {
  border-color: var(--he-coral);
  box-shadow: 0 14px 40px -10px color-mix(in srgb, var(--he-coral) 30%, transparent);
}
.he-tier.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -10px; left: 26px;
  padding: 4px 12px;
  background: var(--he-coral); color: white;
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; font-weight: 500;
}
.he-tier .nm {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--he-ink-soft); font-weight: 500;
}
.he-tier .price {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 500; letter-spacing: -0.03em;
  color: var(--he-ink);
  line-height: 1;
}
.he-tier .price .per { font-family: var(--font-mono); font-size: 13px; color: var(--he-ink-soft); font-weight: 400; }
.he-tier .tag {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--he-ink-soft); margin-top: -6px;
}
.he-tier ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.he-tier ul li {
  font-size: 13px; color: var(--he-ink);
  padding-left: 22px;
  position: relative;
}
.he-tier ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--he-coral); font-weight: 600;
}
.he-tier .cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 16px;
  border-radius: 999px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  text-decoration: none;
}
.he-tier .cta-ghost { background: var(--he-bg); color: var(--he-ink); border: 1px solid var(--he-rule); }
.he-tier .cta-primary { background: var(--he-ink); color: white; }
.he-tier.featured .cta-primary { background: var(--he-coral); }
@media (max-width: 1000px) {
  .he-pricing { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .he-pricing { grid-template-columns: 1fr; }
}

/* ─── Final CTA ─────────────────────────────────────────── */
.he-cta-final {
  background: var(--he-ink);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.he-cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, color-mix(in srgb, var(--he-coral) 24%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 60%, color-mix(in srgb, #C7A8FF 18%, transparent), transparent 60%);
}
.he-cta-final::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 80%);
}
.he-cta-final .wrap {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}
.he-cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 500;
  margin: 0 0 18px;
  color: white;
}
.he-cta-final h2 em { font-family: var(--font-display-serif); font-style: italic; color: color-mix(in srgb, var(--he-coral) 80%, white); font-weight: 400; }
.he-cta-final p {
  color: rgba(255,255,255,0.65);
  font-size: 17px; line-height: 1.6;
  max-width: 540px; margin: 0 auto 32px;
}
.he-cta-final .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.he-cta-final .ftn {
  margin-top: 22px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}


/* ─────────────────────────────────────────────────────────
   REDESIGNED home sections — bolder, more distinctive
   ───────────────────────────────────────────────────────── */

/* ─── PILLARS v2 — Asymmetric bento with bold icons ─────── */
.he-pillars-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.he-pb {
  position: relative;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--he-rule);
  background: white;
}
.he-pb:hover { transform: translateY(-3px); box-shadow: var(--he-shadow-card); }
.he-pb.hero {
  grid-row: 1 / 3;
  grid-column: 1;
  background: var(--he-ink);
  color: white;
  border-color: transparent;
  padding: 36px;
}
.he-pb.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 0%, color-mix(in srgb, var(--he-coral) 40%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, color-mix(in srgb, #C7A8FF 26%, transparent), transparent 60%);
}
.he-pb.hero > * { position: relative; z-index: 1; }
.he-pb.tinted-coral { background: linear-gradient(135deg, color-mix(in srgb, var(--he-coral) 14%, white), color-mix(in srgb, var(--he-coral) 4%, white)); }
.he-pb.tinted-mint { background: linear-gradient(135deg, color-mix(in srgb, #6BD3C5 14%, white), color-mix(in srgb, #6BD3C5 4%, white)); }
.he-pb.tinted-lavender { background: linear-gradient(135deg, color-mix(in srgb, #C7A8FF 14%, white), color-mix(in srgb, #C7A8FF 4%, white)); }
.he-pb.tinted-amber { background: linear-gradient(135deg, color-mix(in srgb, #FFCB6B 18%, white), color-mix(in srgb, #FFCB6B 5%, white)); }
.he-pb.tinted-cream { background: linear-gradient(135deg, #F2EFE8, #FAFAF7); }

.he-pb .pb-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: white;
  border: 1px solid var(--he-rule);
}
.he-pb.hero .pb-icon { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.he-pb .pb-icon svg { width: 28px; height: 28px; }
.he-pb.hero .pb-icon svg { stroke: white; }
.he-pb:not(.hero) .pb-icon svg { stroke: var(--he-ink); }
.he-pb .pb-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--he-ink-soft);
  opacity: 0.6;
}
.he-pb.hero .pb-num { color: rgba(255,255,255,0.4); }

.he-pb .ti {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500; letter-spacing: -0.025em;
  color: var(--he-ink); margin: 0;
  line-height: 1.15;
}
.he-pb.hero .ti { font-size: 32px; color: white; max-width: 380px; }
.he-pb.hero .ti em {
  font-family: var(--font-display-serif);
  font-style: italic; font-weight: 400;
  color: color-mix(in srgb, var(--he-coral) 90%, white);
}
.he-pb .desc { color: var(--he-ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }
.he-pb.hero .desc { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 380px; }
.he-pb .pb-proof {
  margin-top: auto;
  display: inline-flex; gap: 8px; flex-wrap: wrap;
}
.he-pb .pb-proof .chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(14,16,24,0.06);
  font-family: var(--font-mono);
  font-size: 11px; color: var(--he-ink);
}
.he-pb.hero .pb-proof .chip { background: rgba(255,255,255,0.1); color: white; }
.he-pb.tinted-coral .pb-proof .chip { background: rgba(255,90,54,0.15); color: var(--he-coral); }

@media (max-width: 1000px) {
  .he-pillars-bento { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .he-pb.hero { grid-row: auto; grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .he-pillars-bento { grid-template-columns: 1fr; }
  .he-pb.hero { grid-column: 1; }
}

/* ─── INDUSTRIES v2 — 12 colorful tiles ─────────────────── */
.he-ind12-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.he-ind12 {
  position: relative;
  border-radius: 20px;
  padding: 22px 20px 20px;
  display: flex; flex-direction: column;
  gap: 14px;
  text-decoration: none; color: inherit;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--he-rule);
  min-height: 280px;
}
.he-ind12:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(14,16,24,0.18);
}
.he-ind12 .ind-glyph {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.92;
}
.he-ind12 .ind-deco {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 999px;
  border: 1px dashed currentColor;
  opacity: 0.18;
}
.he-ind12 .ind-deco-2 {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.3;
}
.he-ind12 .ind-meta {
  position: relative; z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.he-ind12 .ind-nm {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 4px;
  line-height: 1.2;
  color: var(--he-ink);
}
.he-ind12.c-ink .ind-nm { color: white; }
.he-ind12 .ind-desc {
  position: relative; z-index: 1;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 4px;
  opacity: 0.85;
  color: var(--he-ink);
}
.he-ind12.c-ink .ind-desc { color: rgba(255,255,255,0.7); }

/* NEW — Feature chip row */
.he-ind12 .ind-tags {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: auto;
}
.he-ind12 .ind-tags .t {
  padding: 3px 8px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.05em;
  font-weight: 500;
  color: inherit;
}
.he-ind12.c-ink .ind-tags .t { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

/* NEW — Footer stat line */
.he-ind12 .ind-stat {
  position: relative; z-index: 1;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed currentColor;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.04em;
  opacity: 0.75;
  line-height: 1.45;
}
.he-ind12 .ind-stat b {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
}

/* Color variants */
.he-ind12.c-coral { background: linear-gradient(135deg, #FFE5DD, #FFD1C3); color: #B33A1F; }
.he-ind12.c-mint { background: linear-gradient(135deg, #D7F0E9, #BFE3D8); color: #16715E; }
.he-ind12.c-lavender { background: linear-gradient(135deg, #E8DDFB, #DAC8FA); color: #5B3CA9; }
.he-ind12.c-amber { background: linear-gradient(135deg, #FFE9C3, #FFD995); color: #8A5A12; }
.he-ind12.c-sky { background: linear-gradient(135deg, #D4E8F6, #B7D7EE); color: #1F5A8A; }
.he-ind12.c-rose { background: linear-gradient(135deg, #F9DAE0, #F4BFCB); color: #95293F; }
.he-ind12.c-sage { background: linear-gradient(135deg, #DDE8D6, #C5D7B8); color: #4A6532; }
.he-ind12.c-ink { background: var(--he-ink); color: #FFCB6B; }
.he-ind12.c-ink .ind-nm { color: white; }
.he-ind12.c-cream { background: linear-gradient(135deg, #F2EBDD, #E8DFC7); color: #6B5520; }
.he-ind12.c-plum { background: linear-gradient(135deg, #E8D5E5, #D7BBD6); color: #6B2D67; }
.he-ind12.c-ocean { background: linear-gradient(135deg, #CFE8E5, #ADD6D1); color: #1F6862; }
.he-ind12.c-terracotta { background: linear-gradient(135deg, #F0D5C5, #E0BAA0); color: #7A3F1F; }

.he-ind12 .ind-pill {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.he-ind12.c-ink .ind-pill { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

.he-ind-more {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  padding: 14px 28px;
  background: var(--he-ink);
  color: white;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.he-ind-more:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -6px rgba(14,16,24,0.35); }
.he-ind-more .count {
  background: rgba(255,255,255,0.18);
  padding: 2px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
}

@media (max-width: 1100px) { .he-ind12-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .he-ind12-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .he-ind12-grid { grid-template-columns: 1fr; } }

/* ─── INTEGRATIONS v2 — Brand-colored logo chips ─────────── */
.he-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.he-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.he-logo:hover { border-color: rgba(14,16,24,0.18); transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(14,16,24,0.12); }
.he-logo .lg {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex: 0 0 32px;
  letter-spacing: -0.02em;
}
.he-logo .lg.stripe { background: linear-gradient(135deg, #635BFF, #4F46E5); }
.he-logo .lg.razorpay { background: linear-gradient(135deg, #0C2451, #3395FF); }
.he-logo .lg.paypal { background: linear-gradient(135deg, #003087, #009CDE); }
.he-logo .lg.square { background: #000; }
.he-logo .lg.mollie { background: #00B286; }
.he-logo .lg.zoom { background: linear-gradient(135deg, #2D8CFF, #0E71EB); }
.he-logo .lg.meet { background: linear-gradient(135deg, #00897B, #00AC47); }
.he-logo .lg.teams { background: linear-gradient(135deg, #4B53BC, #7B83EB); }
.he-logo .lg.gcal { background: linear-gradient(135deg, #4285F4, #1A73E8); }
.he-logo .lg.outlook { background: linear-gradient(135deg, #0078D4, #28A8EA); }
.he-logo .lg.twilio { background: #F22F46; }
.he-logo .lg.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.he-logo .lg.sendgrid { background: linear-gradient(135deg, #1A82E2, #00B2FF); }
.he-logo .lg.mailgun { background: #C03; }
.he-logo .lg.ses { background: linear-gradient(135deg, #232F3E, #FF9900); color: #fff; }
.he-logo .lg.hubspot { background: #FF7A59; }
.he-logo .lg.salesforce { background: linear-gradient(135deg, #00A1E0, #1798C1); }
.he-logo .lg.zapier { background: #FF4A00; }
.he-logo .lg.make { background: linear-gradient(135deg, #6D2BFF, #B73EFF); }
.he-logo .lg.ga4 { background: linear-gradient(135deg, #F9AB00, #E37400); }
.he-logo .lg.meta { background: linear-gradient(135deg, #0866FF, #00A2FF); }
.he-logo .lg.brevo { background: #0B996E; }
.he-logo .lg.postmark { background: #FFCB47; color: #0E1018; }
.he-logo .lg.aisensy { background: linear-gradient(135deg, #6B46C1, #4F46E5); }

.he-logo .nm {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  color: var(--he-ink);
  letter-spacing: -0.01em;
}
.he-logo .cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--he-ink-soft);
  margin-top: 1px;
}

@media (max-width: 1100px) { .he-logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px) { .he-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .he-logos { grid-template-columns: repeat(2, 1fr); } }

/* ─── PRICING v2 — Asymmetric featured ──────────────────── */
.he-pricing-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.he-pricing-v2 .stack { display: flex; flex-direction: column; gap: 14px; }

.he-pt {
  position: relative;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.he-pt:not(.featured):hover { transform: translateY(-2px); box-shadow: var(--he-shadow-card); }

.he-pt-featured {
  background: var(--he-ink);
  color: white;
  border: none;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: 24px;
  min-height: 580px;
}
.he-pt-featured::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--he-coral) 38%, transparent), transparent 50%),
    radial-gradient(circle at 0% 90%, color-mix(in srgb, #C7A8FF 25%, transparent), transparent 55%);
}
.he-pt-featured > * { position: relative; z-index: 1; }
.he-pt-featured .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--he-coral); color: white;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
}
.he-pt-featured .nm {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 28px;
}
.he-pt-featured .price {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 500; letter-spacing: -0.04em;
  color: white;
  line-height: 1;
  margin-top: 8px;
}
.he-pt-featured .price em {
  font-family: var(--font-display-serif);
  font-style: italic; font-weight: 400;
  color: color-mix(in srgb, var(--he-coral) 90%, white);
}
.he-pt-featured .price .per {
  font-family: var(--font-mono); font-size: 14px;
  color: rgba(255,255,255,0.5); font-weight: 400;
  letter-spacing: 0.02em;
}
.he-pt-featured .tagline {
  margin-top: 14px;
  font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
}
.he-pt-featured .features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.he-pt-featured .features .feat {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.he-pt-featured .features .feat::before {
  content: "→";
  color: var(--he-coral);
  flex: 0 0 14px;
  font-family: var(--font-display); font-weight: 600;
}
.he-pt-featured .cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; padding: 0 28px;
  background: white; color: var(--he-ink);
  border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-decoration: none;
  align-self: stretch;
  transition: transform 0.2s ease;
}
.he-pt-featured .cta:hover { transform: translateY(-1px); }
.he-pt-featured .small {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

/* Side tiers — slim horizontal cards */
.he-pt-slim {
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}
.he-pt-slim:hover {
  border-color: rgba(14,16,24,0.18);
  transform: translateY(-2px);
  box-shadow: var(--he-shadow-card-soft);
}
.he-pt-slim .head { display: flex; align-items: baseline; gap: 12px; }
.he-pt-slim .nm {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--he-ink);
}
.he-pt-slim .tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-ink-soft);
}
.he-pt-slim .desc {
  font-size: 13px; color: var(--he-ink-soft); line-height: 1.5;
  grid-column: 1 / -1;
}
.he-pt-slim .price {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500; letter-spacing: -0.03em;
  color: var(--he-ink);
  line-height: 1;
  text-align: right;
}
.he-pt-slim .price .per {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--he-ink-soft); font-weight: 400;
  display: block; margin-top: 2px;
}
.he-pt-slim .arr {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 18px; color: var(--he-coral);
  text-align: right;
  margin-top: 6px;
}

@media (max-width: 920px) {
  .he-pricing-v2 { grid-template-columns: 1fr; }
  .he-pt-featured { min-height: 0; padding: 32px; }
  .he-pt-featured .features { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────
   SAVINGS v2 — Equation-style "old stack = X, then minus us = saved"
   ───────────────────────────────────────────────────────── */

.he-eq {
  position: relative;
  background: var(--he-card);
  border: 1px solid var(--he-rule);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 60px);
  overflow: hidden;
  box-shadow: var(--he-shadow-card);
}
.he-eq::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--he-coral) 6%, transparent), transparent 40%),
    radial-gradient(circle at 100% 100%, color-mix(in srgb, #C7A8FF 6%, transparent), transparent 40%);
}
.he-eq-row { position: relative; z-index: 1; }

.he-eq .step-lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--he-ink-soft);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.he-eq .step-lbl::before {
  content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.4;
}
.he-eq .step-lbl::after {
  content: ""; flex: 1; height: 1px; background: currentColor; opacity: 0.12;
}

/* Row 1 — Your current stack (6 logos with + between) */
.he-eq .stack-row {
  display: flex; flex-wrap: wrap; align-items: stretch;
  gap: 8px;
  margin-bottom: 14px;
}
.he-eq .tool {
  flex: 1 1 calc(16.66% - 8px);
  min-width: 130px;
  background: var(--he-bg-2);
  border: 1px solid var(--he-rule);
  border-radius: 16px;
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.he-eq .tool .tool-lg {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.he-eq .tool .tool-nm {
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--he-ink);
}
.he-eq .tool .tool-prc {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--he-ink-soft);
}
.he-eq .tool::after {
  content: "+";
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--he-ink-soft);
  width: 12px; height: 20px;
  display: grid; place-items: center;
  background: var(--he-card);
  z-index: 2;
}
.he-eq .tool:last-child::after { display: none; }

/* Row 2 — equals total */
.he-eq .total-row {
  display: flex; align-items: center; gap: 18px;
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--he-ink);
  color: white;
  border-radius: 18px;
}
.he-eq .total-row .eq {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 500;
  color: var(--he-coral);
  line-height: 1;
}
.he-eq .total-row .total-lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.he-eq .total-row .total-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px); font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 2px;
}
.he-eq .total-row .total-num em {
  font-family: var(--font-display-serif);
  font-style: italic; font-weight: 400; color: var(--he-coral);
}
.he-eq .total-row .total-num .per {
  font-family: var(--font-mono); font-size: 0.4em;
  color: rgba(255,255,255,0.5); margin-left: 6px;
  font-weight: 400;
}
.he-eq .total-row .total-meta {
  margin-left: auto;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  max-width: 200px; line-height: 1.4;
}
@media (max-width: 700px) {
  .he-eq .total-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .he-eq .total-row .total-meta { margin-left: 0; text-align: left; max-width: none; }
}

/* Row 3 — minus / replace */
.he-eq .replace-row {
  display: grid;
  grid-template-columns: 60px 1fr 60px 1fr;
  align-items: center;
  gap: 18px;
}
.he-eq .op-big {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 500;
  color: var(--he-coral);
  line-height: 1;
  text-align: center;
}
.he-eq .us-card {
  background: linear-gradient(135deg, color-mix(in srgb, var(--he-coral) 12%, white), white);
  border: 2px solid var(--he-coral);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  position: relative;
}
.he-eq .us-card .us-lg {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--he-coral);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
}
.he-eq .us-card .us-nm {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--he-ink);
}
.he-eq .us-card .us-prc {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--he-ink-soft);
  margin-top: 2px;
}

.he-eq .savings-card {
  position: relative;
  background: var(--he-coral);
  color: white;
  border-radius: 18px;
  padding: 22px 28px;
  overflow: hidden;
}
.he-eq .savings-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.18), transparent 50%);
}
.he-eq .savings-card > * { position: relative; z-index: 1; }
.he-eq .savings-card .savings-lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.he-eq .savings-card .savings-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px); font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 6px;
}
.he-eq .savings-card .savings-num em {
  font-family: var(--font-display-serif);
  font-style: italic; font-weight: 400;
}
.he-eq .savings-card .savings-num .per {
  font-family: var(--font-mono);
  font-size: 0.3em; opacity: 0.6;
  margin-left: 6px; font-weight: 400;
}
.he-eq .savings-card .savings-meta {
  margin-top: 6px;
  font-size: 12px; opacity: 0.85;
}

@media (max-width: 920px) {
  .he-eq .replace-row { grid-template-columns: 1fr; gap: 12px; }
  .he-eq .op-big { font-size: 36px; }
}

.he-eq .eq-foot {
  margin-top: 30px;
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
}
.he-eq .eq-foot .legend {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--he-ink-soft);
}
.he-eq .eq-foot .legend span b { color: var(--he-coral); font-weight: 500; }

/* ─────────────────────────────────────────────────────────
   PRICING v3 — Tier headers + feature comparison matrix
   ───────────────────────────────────────────────────────── */

.he-price-matrix {
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--he-shadow-card-soft);
}
.he-pmx-tiers {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  border-bottom: 1px solid var(--he-rule);
}
.he-pmx-tiers .tier-col {
  padding: 28px 22px 22px;
  border-right: 1px solid var(--he-rule);
  position: relative;
}
.he-pmx-tiers .tier-col:last-child { border-right: none; }
.he-pmx-tiers .tier-col.first {
  background: var(--he-bg);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.he-pmx-tiers .tier-col.first .ttl {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.025em;
  color: var(--he-ink);
}
.he-pmx-tiers .tier-col.first .sub {
  font-size: 13px; color: var(--he-ink-soft); margin-top: 8px;
  line-height: 1.5; max-width: 280px;
}
.he-pmx-tiers .tier-col.featured {
  background: var(--he-ink); color: white;
  border-right-color: var(--he-ink);
}
.he-pmx-tiers .badge-top {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--he-coral); color: white;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.12em; font-weight: 600;
}
.he-pmx-tiers .tier-col .tier-nm {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--he-ink-soft);
  margin-bottom: 8px;
}
.he-pmx-tiers .tier-col.featured .tier-nm { color: rgba(255,255,255,0.55); }
.he-pmx-tiers .tier-col .tier-price {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500; letter-spacing: -0.03em;
  color: var(--he-ink);
  line-height: 1;
}
.he-pmx-tiers .tier-col.featured .tier-price { color: white; }
.he-pmx-tiers .tier-col.featured .tier-price em {
  font-family: var(--font-display-serif); font-style: italic; font-weight: 400;
  color: color-mix(in srgb, var(--he-coral) 90%, white);
}
.he-pmx-tiers .tier-col .tier-price .per {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--he-ink-soft); font-weight: 400;
}
.he-pmx-tiers .tier-col.featured .tier-price .per { color: rgba(255,255,255,0.5); }
.he-pmx-tiers .tier-col .tier-tag {
  margin-top: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--he-ink-soft);
}
.he-pmx-tiers .tier-col.featured .tier-tag { color: rgba(255,255,255,0.6); }
.he-pmx-tiers .tier-col .tier-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 14px;
  height: 38px; padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  text-decoration: none;
  background: var(--he-bg-2);
  color: var(--he-ink);
  border: 1px solid var(--he-rule);
  width: 100%;
}
.he-pmx-tiers .tier-col.featured .tier-cta {
  background: var(--he-coral); color: white; border-color: var(--he-coral);
}

/* Matrix body */
.he-pmx-body { }
.he-pmx-group {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
}
.he-pmx-group .pmx-cat {
  grid-column: 1 / -1;
  padding: 12px 22px;
  background: var(--he-bg);
  border-bottom: 1px solid var(--he-rule);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-ink-soft);
  font-weight: 600;
}
.he-pmx-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  border-bottom: 1px solid var(--he-rule);
}
.he-pmx-row:last-child { border-bottom: none; }
.he-pmx-row .label {
  padding: 14px 22px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--he-ink);
  display: flex; align-items: center;
  background: white;
  border-right: 1px solid var(--he-rule);
}
.he-pmx-row .cell {
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-body); font-size: 13px;
  color: var(--he-ink-soft);
  border-right: 1px solid var(--he-rule);
  display: flex; align-items: center; justify-content: center;
}
.he-pmx-row .cell:last-child { border-right: none; }
.he-pmx-row .cell.featured {
  background: color-mix(in srgb, var(--he-coral) 4%, white);
  color: var(--he-ink); font-weight: 500;
}
.he-pmx-row .cell .ck {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--he-coral) 12%, white);
  color: var(--he-coral);
  font-size: 12px;
}
.he-pmx-row .cell .x {
  color: rgba(14,16,24,0.2);
  font-size: 16px;
}
.he-pmx-row .cell .v {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500; color: var(--he-ink);
}
.he-pmx-row .cell.featured .v { color: var(--he-coral); }

/* Footer band */
.he-pmx-foot {
  background: var(--he-bg);
  padding: 22px;
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--he-rule);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--he-ink-soft);
}
.he-pmx-foot span b { color: var(--he-coral); font-weight: 500; }

@media (max-width: 1100px) {
  .he-pmx-tiers, .he-pmx-row, .he-pmx-group { grid-template-columns: 1.2fr repeat(4, 1fr); }
  .he-pmx-tiers .tier-col, .he-pmx-row .label, .he-pmx-row .cell { padding-left: 12px; padding-right: 12px; font-size: 12px; }
  .he-pmx-tiers .tier-col .tier-price { font-size: 24px; }
}
@media (max-width: 880px) {
  .he-price-matrix { overflow-x: auto; }
  .he-pmx-tiers, .he-pmx-row, .he-pmx-group { min-width: 760px; }
  .he-pmx-foot { min-width: 760px; }
}


/* ─────────────────────────────────────────────────────────
   ACCEPT PAYMENTS section
   ───────────────────────────────────────────────────────── */
.he-pay {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.he-pay .text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 500;
  margin: 0 0 16px; color: var(--he-ink);
}
.he-pay .text h2 em {
  font-family: var(--font-display-serif);
  font-style: italic; font-weight: 400; color: var(--he-coral);
}
.he-pay .text .lede {
  color: var(--he-ink-soft); font-size: 16px; line-height: 1.6;
  margin: 0 0 28px; max-width: 480px;
}
.he-pay .text .kicker {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--he-coral);
  margin-bottom: 14px;
}

.he-pay-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 24px;
}
.he-pay-feat {
  display: flex; gap: 12px; align-items: flex-start;
}
.he-pay-feat .ico {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--he-coral) 12%, white);
  color: var(--he-coral);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.he-pay-feat .ti {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: var(--he-ink);
  letter-spacing: -0.015em;
}
.he-pay-feat .desc {
  font-size: 12px; color: var(--he-ink-soft);
  line-height: 1.5; margin-top: 2px;
}

/* Right side — Payment widget mockup */
.he-pay-widget {
  position: relative;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--he-shadow-card);
  display: flex; flex-direction: column; gap: 18px;
}
.he-pay-widget::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--he-coral) 8%, transparent), transparent 50%);
  pointer-events: none; z-index: 0;
}
.he-pay-widget > * { position: relative; z-index: 1; }

.he-pay-widget .pw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--he-rule);
}
.he-pay-widget .pw-head .lbl {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--he-ink-soft);
}
.he-pay-widget .pw-head .step {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: var(--he-ink);
  letter-spacing: -0.015em;
}
.he-pay-widget .pw-head .pw-amount {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--he-ink);
}
.he-pay-widget .pw-line {
  display: flex; justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--he-ink);
}
.he-pay-widget .pw-line.muted { color: var(--he-ink-soft); }
.he-pay-widget .pw-line.total {
  padding-top: 12px;
  border-top: 1px dashed var(--he-rule);
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--he-ink);
}

.he-pay-widget .pw-pick {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.he-pay-widget .pw-gw {
  padding: 10px 12px;
  border: 1px solid var(--he-rule);
  border-radius: 12px;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
}
.he-pay-widget .pw-gw.sel {
  border-color: var(--he-coral);
  background: color-mix(in srgb, var(--he-coral) 5%, white);
}
.he-pay-widget .pw-gw .lg {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  color: white;
}
.he-pay-widget .pw-gw .lg.stripe { background: linear-gradient(135deg, #635BFF, #4F46E5); }
.he-pay-widget .pw-gw .lg.razorpay { background: linear-gradient(135deg, #0C2451, #3395FF); }
.he-pay-widget .pw-gw .lg.paypal { background: linear-gradient(135deg, #003087, #009CDE); }
.he-pay-widget .pw-gw .lg.square { background: #000; }
.he-pay-widget .pw-gw .lg.mollie { background: #00B286; }
.he-pay-widget .pw-gw .lg.cash { background: #4A6532; }
.he-pay-widget .pw-gw .nm {
  font-family: var(--font-body); font-size: 12px;
  font-weight: 500; color: var(--he-ink);
}
.he-pay-widget .pw-gw .check {
  margin-left: auto;
  width: 16px; height: 16px;
  border-radius: 999px;
  border: 1px solid var(--he-rule);
  display: grid; place-items: center;
  font-size: 10px; color: transparent;
}
.he-pay-widget .pw-gw.sel .check {
  background: var(--he-coral); color: white; border-color: var(--he-coral);
}

.he-pay-widget .pw-card-input {
  padding: 12px 14px;
  border: 1px solid var(--he-rule);
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--he-ink);
}
.he-pay-widget .pw-card-input .num {
  letter-spacing: 0.12em;
  flex: 1;
}
.he-pay-widget .pw-card-input .meta {
  color: var(--he-ink-soft);
  font-size: 12px;
}

.he-pay-widget .pw-pay-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  background: var(--he-coral); color: white;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em;
}
.he-pay-widget .pw-pay-btn .pad {
  font-family: var(--font-mono);
  font-size: 12px; padding: 3px 8px;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.he-pay-widget .pw-trust {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-ink-soft);
}
.he-pay-widget .pw-trust .ck {
  display: inline-flex; align-items: center; gap: 4px;
}
.he-pay-widget .pw-trust .ck::before { content: "✓"; color: var(--he-coral); }

@media (max-width: 920px) {
  .he-pay { grid-template-columns: 1fr; }
  .he-pay-widget { max-width: 480px; margin: 0 auto; }
}

/* ─────────────────────────────────────────────────────────
   ADDITIONAL FEATURES section
   ───────────────────────────────────────────────────────── */
.he-addfeats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.he-addfeat {
  position: relative;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 16px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none; color: inherit;
}
.he-addfeat:hover {
  border-color: var(--he-coral);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px color-mix(in srgb, var(--he-coral) 25%, transparent);
}
.he-addfeat .af-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--he-bg-2);
  border: 1px solid var(--he-rule);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.he-addfeat .af-ico svg { width: 18px; height: 18px; stroke: var(--he-ink); }
.he-addfeat .af-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.08em;
  color: var(--he-ink-soft); opacity: 0.55;
}
.he-addfeat .af-ti {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--he-ink);
}
.he-addfeat .af-desc {
  font-size: 12px;
  color: var(--he-ink-soft);
  line-height: 1.45;
}
.he-addfeat .af-tag {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-coral);
}

@media (max-width: 1000px) { .he-addfeats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .he-addfeats { grid-template-columns: 1fr; } }


/* ─────────────────────────────────────────────────────────
   ADDITIONAL FEATURES v2 — Modern motion
   ───────────────────────────────────────────────────────── */

.he-addfeats-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  perspective: 1000px;
}

.he-af2 {
  position: relative;
  background: white;
  border: 1px solid var(--he-rule);
  border-radius: 18px;
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  text-decoration: none; color: inherit;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  opacity: 0; transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(.2,.7,.2,1),
    transform 0.7s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.he-af2.in-view { opacity: 1; transform: translateY(0); }
.he-af2:hover {
  border-color: rgba(14,16,24,0.18);
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 50px -16px rgba(14,16,24,0.22), 0 4px 12px rgba(14,16,24,0.04);
}

/* Animated coral border sweep on hover */
.he-af2::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--he-coral) 40deg,
    transparent 90deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: heAf2Rotate 4s linear infinite paused;
  z-index: 1;
  pointer-events: none;
}
.he-af2:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@keyframes heAf2Rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Soft coral wash that rises from bottom on hover */
.he-af2::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--he-coral) 10%, transparent));
  transition: height 0.45s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
  pointer-events: none;
}
.he-af2:hover::after { height: 100%; }

.he-af2 .af2-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--he-ink-soft);
  opacity: 0.5;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.he-af2:hover .af2-num { color: var(--he-coral); opacity: 1; }

/* Icon — orbiting ring + scale-rotate on hover */
.he-af2 .af2-icon-wrap {
  position: relative;
  width: 48px; height: 48px;
  display: grid; place-items: center;
}
.he-af2 .af2-icon-wrap::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  border: 1px dashed rgba(14,16,24,0.12);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), border-color 0.35s ease;
}
.he-af2:hover .af2-icon-wrap::before {
  transform: rotate(45deg) scale(1.15);
  border-color: var(--he-coral);
}
.he-af2 .af2-icon {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--he-bg-2);
  display: grid; place-items: center;
  transition: background 0.35s ease, transform 0.4s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.he-af2:hover .af2-icon {
  background: var(--he-coral);
  transform: scale(1.08);
}
.he-af2 .af2-icon svg {
  width: 18px; height: 18px;
  stroke: var(--he-ink);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.35s ease;
}
.he-af2:hover .af2-icon svg { stroke: white; }
.he-af2 .af2-icon svg path,
.he-af2 .af2-icon svg polyline,
.he-af2 .af2-icon svg line,
.he-af2 .af2-icon svg rect,
.he-af2 .af2-icon svg circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.7s cubic-bezier(.2,.7,.2,1);
}
.he-af2.draw-active .af2-icon svg path,
.he-af2.draw-active .af2-icon svg polyline,
.he-af2.draw-active .af2-icon svg line,
.he-af2.draw-active .af2-icon svg rect,
.he-af2.draw-active .af2-icon svg circle {
  animation: heAf2Draw 1s cubic-bezier(.2,.7,.2,1);
}
@keyframes heAf2Draw {
  0%   { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

.he-af2 .af2-ti {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--he-ink);
  margin-top: 4px;
  transition: color 0.3s ease;
}
.he-af2 .af2-desc {
  font-size: 12.5px;
  color: var(--he-ink-soft);
  line-height: 1.5;
}
.he-af2 .af2-tag {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 8px;
  background: var(--he-bg-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--he-ink);
  align-self: flex-start;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.he-af2 .af2-tag::before {
  content: "→";
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  color: var(--he-coral);
  transform: translateX(-4px);
  opacity: 0;
  transition: all 0.35s ease;
  width: 0;
}
.he-af2:hover .af2-tag {
  background: var(--he-ink); color: white;
  padding-left: 14px;
}
.he-af2:hover .af2-tag::before {
  opacity: 1; transform: translateX(0); width: 11px;
  color: var(--he-coral);
}

/* ─── Dark featured cards ──────────────────────────────── */
.he-af2.featured {
  background: var(--he-ink);
  color: white;
  border-color: transparent;
  overflow: hidden;
}
.he-af2.featured::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--he-coral) 60deg,
    transparent 120deg
  );
  opacity: 1;
  animation: heAf2Rotate 6s linear infinite;
}
.he-af2.featured .af2-num { color: rgba(255,255,255,0.45); }
.he-af2.featured:hover .af2-num { color: var(--he-coral); opacity: 1; }
.he-af2.featured .af2-icon { background: rgba(255,255,255,0.08); }
.he-af2.featured .af2-icon svg { stroke: white; }
.he-af2.featured:hover .af2-icon { background: var(--he-coral); }
.he-af2.featured .af2-icon-wrap::before { border-color: rgba(255,255,255,0.18); }
.he-af2.featured:hover .af2-icon-wrap::before { border-color: var(--he-coral); }
.he-af2.featured .af2-ti { color: white; }
.he-af2.featured .af2-desc { color: rgba(255,255,255,0.65); }
.he-af2.featured .af2-tag { background: rgba(255,255,255,0.1); color: white; }
.he-af2.featured:hover .af2-tag { background: var(--he-coral); }

/* Continuous shimmer sweep on featured cards */
.he-af2.featured > .af2-shimmer {
  position: absolute;
  top: 0; left: -30%;
  width: 30%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,90,54,0.15) 50%,
    transparent 100%
  );
  filter: blur(8px);
  animation: heAf2Shimmer 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes heAf2Shimmer {
  0%, 100% { left: -30%; opacity: 0; }
  50%      { left: 100%; opacity: 1; }
}

/* Pulse dot for featured card "live" indicator */
.he-af2.featured .af2-live {
  position: absolute;
  top: 24px; left: 24px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--he-coral);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--he-coral) 50%, transparent);
  animation: heAf2Pulse 1.8s ease-in-out infinite;
}
@keyframes heAf2Pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--he-coral) 50%, transparent); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}

@media (prefers-reduced-motion: reduce) {
  .he-af2 { opacity: 1; transform: none; transition: none; }
  .he-af2::before, .he-af2::after, .he-af2.featured > .af2-shimmer, .he-af2.featured .af2-live { animation: none !important; }
}

@media (max-width: 1000px) { .he-addfeats-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .he-addfeats-v2 { grid-template-columns: 1fr; } }

/* ─── Section head extra animations ────────────────────── */
.he-sec .sec-head .anim-line {
  display: inline-block;
  height: 1px; width: 0;
  background: var(--he-coral);
  margin: 18px auto 0;
  transition: width 0.9s 0.3s cubic-bezier(.2,.7,.2,1);
}
.he-sec .sec-head.in-view .anim-line { width: 80px; }


/* ─────────────────────────────────────────────────────────
   FEATURE INDEX — dense searchable ledger of every feature
   ───────────────────────────────────────────────────────── */

/* Light-blue blueprint canvas — scoped to this section only */
.he-sec.fx-sec {
  --he-card: #FFFFFF;
  --he-bg-2: #EEF3F9;
  --he-rule: rgba(23,55,94,0.12);
  background: #FFFFFF;
  position: relative;
  isolation: isolate;
  border-top-color: rgba(23,55,94,0.12);
}
.he-sec.fx-sec::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(23,55,94,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,55,94,0.055) 1px, transparent 1px),
    linear-gradient(rgba(23,55,94,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,55,94,0.10) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px, 130px 130px, 130px 130px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 42%, black 30%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 42%, black 30%, transparent 92%);
}
.he-sec.fx-sec::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 8% 4%, rgba(94,150,214,0.16), transparent 62%),
    radial-gradient(ellipse 46% 44% at 94% 88%, rgba(255,90,54,0.07), transparent 62%);
}
.he-sec.fx-sec .fx-item { box-shadow: 0 1px 2px rgba(23,55,94,0.04); }
.he-sec.fx-sec .fx-toolbar { box-shadow: 0 8px 24px -14px rgba(23,55,94,0.3); }

.fx-toolbar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 10px 12px;
  background: var(--he-card);
  border: 1px solid var(--he-rule);
  border-radius: 999px;
  margin-bottom: 32px;
  position: sticky; top: 76px; z-index: 20;
  box-shadow: 0 8px 24px -14px rgba(14,16,24,0.22);
}.fx-search {
  display: flex; align-items: center; gap: 9px;
  flex: 1 1 220px; min-width: 180px;
  padding: 0 6px 0 12px;
}
.fx-search svg { width: 14px; height: 14px; stroke: var(--he-ink-soft); fill: none; stroke-width: 1.7; flex: 0 0 14px; }
.fx-search input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font-body); font-size: 14px; color: var(--he-ink);
  min-width: 0;
}
.fx-search input::placeholder { color: var(--he-ink-soft); }
.fx-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.fx-chip {
  padding: 7px 13px; border-radius: 999px; border: 1px solid transparent;
  background: var(--he-bg-2, #F2F1EC);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--he-ink-soft); cursor: pointer; transition: all 0.2s ease;
  white-space: nowrap;
}
.fx-chip:hover { color: var(--he-ink); }
.fx-chip.active { background: var(--he-ink); color: #fff; }
.fx-count {
  margin-left: auto; padding-right: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--he-ink-soft); white-space: nowrap;
}
.fx-count b { color: var(--he-coral); font-weight: 600; }

/* Group band */
.fx-group {
  display: grid; grid-template-columns: 216px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--he-rule);
}
.fx-group:last-of-type { border-bottom: 1px solid var(--he-rule); }
.fx-group[hidden] { display: none; }
.fx-ghead { position: sticky; top: 148px; align-self: start; }
.fx-gnum {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--he-coral); font-weight: 600;
}
.fx-gname {
  font-family: var(--font-display); font-size: 19px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--he-ink); margin-top: 5px; line-height: 1.2;
}
.fx-gdesc { font-size: 12.5px; line-height: 1.5; color: var(--he-ink-soft); margin-top: 6px; }
.fx-gtally {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--he-ink-soft);
  padding-top: 8px; border-top: 1px dashed var(--he-rule);
}

/* Item grid */
.fx-items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; align-content: start; }
.fx-item {
  display: flex; flex-direction: column; gap: 5px;
  min-height: 82px;
  padding: 12px 13px;
  border: 1px solid var(--he-rule);
  border-radius: 11px;
  background: var(--he-card);
  text-decoration: none; color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.fx-item[hidden] { display: none; }
.fx-item:hover {
  border-color: var(--he-coral);
  box-shadow: 0 10px 26px -14px color-mix(in srgb, var(--he-coral) 55%, transparent);
}
.fx-top { display: flex; align-items: baseline; gap: 9px; }
.fx-n {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em;
  color: var(--he-ink-soft); opacity: 0.65; flex: 0 0 auto;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.fx-item:hover .fx-n { color: var(--he-coral); opacity: 1; }
.fx-t {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 500;
  letter-spacing: -0.012em; color: var(--he-ink); line-height: 1.3;
}
.fx-star { color: var(--he-coral); font-size: 10px; }
.fx-body { }
.fx-d {
  font-size: 11.5px; line-height: 1.45; color: var(--he-ink-soft);
  padding-left: 25px;
}

.fx-empty {
  display: none; padding: 48px 0; text-align: center;
  font-family: var(--font-display); font-size: 17px; color: var(--he-ink-soft);
}
.fx-empty.show { display: block; }
.fx-empty b { color: var(--he-ink); }

.fx-foot {
  margin-top: 28px; display: flex; gap: 24px; align-items: center;
  flex-wrap: wrap; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--he-ink-soft);
}
.fx-foot b { color: var(--he-coral); font-weight: 500; }

@media (max-width: 1040px) { .fx-items { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) {
  .fx-group { grid-template-columns: 1fr; gap: 16px; }
  .fx-ghead { position: static; }
  .fx-toolbar { position: static; }
}
@media (max-width: 520px) { .fx-items { grid-template-columns: 1fr; } }


/* ─────────────────────────────────────────────────────────
   WORDPRESS-NATIVE — plugin proof section
   ───────────────────────────────────────────────────────── */

.wp-split {
  display: grid; grid-template-columns: 1fr 1.08fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.wp-split .wp-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 500;
  margin: 0 0 16px; color: var(--he-ink);
}
.wp-split .wp-text h2 em { font-family: var(--font-display-serif); font-style: italic; font-weight: 400; color: var(--he-coral); }
.wp-split .wp-text .lede { color: var(--he-ink-soft); font-size: 16px; line-height: 1.6; margin: 0 0 26px; max-width: 480px; }
.wp-split .wp-text .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--he-coral); margin-bottom: 14px;
}
.wp-split .wp-text .kicker svg { width: 15px; height: 15px; fill: currentColor; }

.wp-points { display: flex; flex-direction: column; gap: 15px; margin-bottom: 28px; }
.wp-point { display: grid; grid-template-columns: 30px 1fr; gap: 13px; align-items: start; }
.wp-point .n {
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--he-ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
}
.wp-point .ti { font-family: var(--font-display); font-size: 15px; font-weight: 500; letter-spacing: -0.015em; color: var(--he-ink); }
.wp-point .d { font-size: 13px; line-height: 1.5; color: var(--he-ink-soft); margin-top: 2px; max-width: 420px; }
.wp-point code {
  font-family: var(--font-mono); font-size: 12px;
  background: color-mix(in srgb, var(--he-coral) 10%, white);
  color: var(--he-coral); padding: 1px 6px; border-radius: 5px;
}

/* wp-admin mockup */
.wp-admin-mock {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--he-rule);
  box-shadow: 0 30px 70px -24px rgba(14,16,24,0.32);
  background: #f0f0f1;
  font-family: -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.wpa-bar {
  height: 32px; background: #1d2327; display: flex; align-items: center;
  gap: 14px; padding: 0 12px;
  font-size: 11px; color: #c3c4c7;
}
.wpa-bar .wp-logo { width: 15px; height: 15px; fill: #c3c4c7; flex: 0 0 15px; }
.wpa-bar .sp { margin-left: auto; }
.wpa-body { display: grid; grid-template-columns: 150px 1fr; min-height: 330px; }
.wpa-menu { background: #1d2327; padding: 6px 0; }
.wpa-mi {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 11px; font-size: 12px; color: #f0f0f1;
}
.wpa-mi svg { width: 14px; height: 14px; fill: none; stroke: #a7aaad; stroke-width: 1.7; flex: 0 0 14px; }
.wpa-mi.on { background: #2271b1; color: #fff; font-weight: 600; }
.wpa-mi.on svg { stroke: #fff; }
.wpa-mi.dim { color: #a7aaad; }
.wpa-mi .badge {
  margin-left: auto; background: #d63638; color: #fff;
  border-radius: 9px; padding: 0 5px; font-size: 10px; font-weight: 600;
}
.wpa-sub { padding: 3px 0 5px 33px; display: flex; flex-direction: column; gap: 5px; background: #2c3338; }
.wpa-sub span { font-size: 11px; color: #c3c4c7; }
.wpa-sub span.cur { color: #72aee6; font-weight: 600; }

.wpa-main { padding: 18px; }
.wpa-h1 { font-size: 19px; font-weight: 400; color: #1d2327; margin-bottom: 12px; }
.wpa-plugin {
  background: #fff; border: 1px solid #c3c4c7;
  border-left: 4px solid #2271b1;
  border-radius: 2px; padding: 12px 14px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}
.wpa-prow { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.wpa-pname { font-size: 14px; font-weight: 600; color: #2271b1; }
.wpa-pactive {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: #007017; background: #edfaef; border: 1px solid #b8e6c1;
  padding: 1px 7px; border-radius: 3px;
}
.wpa-pdesc { font-size: 12px; color: #50575e; line-height: 1.5; margin-top: 6px; }
.wpa-plinks { display: flex; gap: 10px; margin-top: 9px; font-size: 12px; color: #2271b1; }
.wpa-plinks span:last-child { color: #b32d2e; }
.wpa-pmeta {
  margin-top: 9px; padding-top: 9px; border-top: 1px solid #f0f0f1;
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 11px; color: #646970;
}
.wpa-notice {
  margin-top: 12px; background: #fff; border: 1px solid #c3c4c7;
  border-left: 4px solid #00a32a; border-radius: 2px;
  padding: 9px 12px; font-size: 12px; color: #1d2327;
}
.wpa-notice b { font-weight: 600; }
.wpa-tables {
  margin-top: 12px; background: #fff; border: 1px solid #c3c4c7; border-radius: 2px;
  padding: 10px 12px;
}
.wpa-tables .cap { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #646970; margin-bottom: 7px; }
.wpa-tables .rows { display: flex; flex-wrap: wrap; gap: 4px; }
.wpa-tables code {
  font-family: var(--font-mono); font-size: 10.5px;
  background: #f6f7f7; border: 1px solid #dcdcde; border-radius: 3px;
  padding: 2px 6px; color: #3c434a;
}

/* Fact strip */
.wp-facts {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px; margin-top: 44px;
}
.wp-fact {
  background: var(--he-card); border: 1px solid var(--he-rule);
  border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; gap: 7px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.wp-fact:hover { border-color: var(--he-coral); transform: translateY(-2px); }
.wp-fact .fi {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--he-bg-2, #F2F1EC); display: grid; place-items: center;
}
.wp-fact .fi svg { width: 16px; height: 16px; fill: none; stroke: var(--he-ink); stroke-width: 1.7; }
.wp-fact .ft { font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: -0.015em; color: var(--he-ink); }
.wp-fact .fd { font-size: 12px; line-height: 1.45; color: var(--he-ink-soft); }
.wp-fact code {
  font-family: var(--font-mono); font-size: 11px;
  background: var(--he-bg-2, #F2F1EC); padding: 1px 5px; border-radius: 4px; color: var(--he-ink);
}

.wp-req {
  margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.wp-req span {
  padding: 7px 14px; border-radius: 999px;
  border: 1px dashed var(--he-rule); background: var(--he-card);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--he-ink-soft);
}
.wp-req span b { color: var(--he-ink); font-weight: 600; }

@media (max-width: 960px) {
  .wp-split { grid-template-columns: 1fr; }
  .wp-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wp-facts { grid-template-columns: 1fr; }
  .wpa-body { grid-template-columns: 116px 1fr; }
}


/* ─────────────────────────────────────────────────────────
   EVENTS · TICKETS · SEAT & TABLE DESIGNER
   ───────────────────────────────────────────────────────── */

.sd-shell {
  border-radius: 20px; overflow: hidden;
  background: #0E1018;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 36px 90px -30px rgba(14,16,24,0.55);
}

/* Toolbar */
.sd-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
}
.sd-tabs { display: flex; gap: 4px; }
.sd-tab {
  padding: 6px 13px; border-radius: 999px; border: none;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.62);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.sd-tab:hover { color: #fff; }
.sd-tab.on { background: var(--he-coral); color: #fff; }
.sd-tools { display: flex; gap: 3px; margin-left: 4px; }
.sd-tool {
  width: 30px; height: 30px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  display: grid; place-items: center; cursor: pointer;
  transition: all 0.2s ease;
}
.sd-tool svg { width: 15px; height: 15px; fill: none; stroke: rgba(255,255,255,0.66); stroke-width: 1.7; }
.sd-tool:hover { background: rgba(255,255,255,0.1); }
.sd-tool.on { background: var(--he-coral); border-color: var(--he-coral); }
.sd-tool.on svg { stroke: #fff; }
.sd-zoom {
  margin-left: auto; display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}
.sd-zoom .live { display: inline-flex; align-items: center; gap: 6px; color: var(--he-coral); }
.sd-zoom .live i {
  width: 6px; height: 6px; border-radius: 999px; background: var(--he-coral);
  animation: sdPulse 1.8s ease-in-out infinite;
}
@keyframes sdPulse { 0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--he-coral) 55%,transparent)} 50%{box-shadow:0 0 0 6px transparent} }

/* 3-pane body */
.sd-body { display: grid; grid-template-columns: 158px 1fr 208px; min-height: 430px; }

/* Palette */
.sd-pal { border-right: 1px solid rgba(255,255,255,0.08); padding: 14px 12px; }
.sd-cap {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 9px;
}
.sd-pal-items { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.sd-pi {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 9px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.12);
  font-size: 11.5px; color: rgba(255,255,255,0.8);
  cursor: grab; transition: all 0.2s ease;
}
.sd-pi:hover { background: rgba(255,90,54,0.16); border-color: var(--he-coral); color: #fff; }
.sd-pi svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; flex: 0 0 14px; }
.sd-pi .grip { margin-left: auto; font-family: var(--font-mono); font-size: 11px; opacity: 0.35; }

/* Canvas */
.sd-canvas {
  position: relative; padding: 22px;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255,90,54,0.12), transparent 65%);
  background-size: 22px 22px, 22px 22px, 100% 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.sd-view { display: none; width: 100%; }
.sd-view.on { display: block; animation: sdIn 0.4s cubic-bezier(.2,.7,.2,1); }
@keyframes sdIn { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }

/* Stage */
.sd-stage {
  width: 58%; margin: 0 auto 22px;
  padding: 9px 0; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border-radius: 0 0 60px 60px / 0 0 26px 26px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}

/* Seat rows */
.sd-rows { display: flex; flex-direction: column; gap: 7px; align-items: center; }
.sd-row { display: flex; align-items: center; gap: 5px; }
.sd-rl {
  width: 15px; font-family: var(--font-mono); font-size: 9px;
  color: rgba(255,255,255,0.35); text-align: center; flex: 0 0 15px;
}
.sd-seat {
  width: 15px; height: 15px; border-radius: 4px 4px 3px 3px;
  background: rgba(255,255,255,0.16);
  transition: transform 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.sd-seat:hover { transform: translateY(-2px) scale(1.14); background: rgba(255,255,255,0.4); }
.sd-seat.vip { background: #FFCB6B; }
.sd-seat.std { background: rgba(255,90,54,0.42); }
.sd-seat.sold { background: rgba(255,255,255,0.07); cursor: not-allowed; }
.sd-seat.sold:hover { transform: none; background: rgba(255,255,255,0.07); }
.sd-seat.sel {
  background: var(--he-coral);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.85), 0 0 14px color-mix(in srgb, var(--he-coral) 70%, transparent);
  transform: translateY(-2px) scale(1.14);
}
.sd-gap { width: 13px; }

/* Restaurant floor */
.sd-floor {
  position: relative; width: 100%; height: 330px;
  border: 1px dashed rgba(255,255,255,0.14); border-radius: 12px;
}
.sd-zone {
  position: absolute; font-family: var(--font-mono); font-size: 8.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28);
}
.sd-tbl {
  position: absolute; display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px dashed rgba(255,255,255,0.3);
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  color: rgba(255,255,255,0.9); cursor: pointer;
  transition: all 0.2s ease;
}
.sd-tbl.sq { border-radius: 7px; }
.sd-tbl:hover { background: rgba(255,255,255,0.24); transform: scale(1.06); }
.sd-tbl.sold { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); border-style: solid; }
.sd-tbl.sold:hover { transform: none; }
.sd-tbl.sel {
  background: var(--he-coral); border: 2px solid #fff; color: #fff;
  box-shadow: 0 0 22px color-mix(in srgb, var(--he-coral) 65%, transparent);
}
.sd-tbl small { display: block; font-family: var(--font-mono); font-size: 8px; font-weight: 400; opacity: 0.7; }
.sd-bar-el {
  position: absolute; border-radius: 6px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* Legend */
.sd-legend {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 18px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.sd-legend span { display: inline-flex; align-items: center; gap: 6px; }
.sd-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }

/* Inspector */
.sd-insp { border-left: 1px solid rgba(255,255,255,0.08); padding: 14px 13px; }
.sd-field { margin-bottom: 11px; }
.sd-field label {
  display: block; font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.sd-field .val {
  padding: 7px 9px; border-radius: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body); font-size: 12px; color: #fff;
}
.sd-field .val.coral { border-color: var(--he-coral); color: var(--he-coral); }
.sd-seg { display: flex; gap: 3px; }
.sd-seg span {
  flex: 1; text-align: center; padding: 6px 0; border-radius: 6px;
  background: rgba(255,255,255,0.05); font-size: 11px; color: rgba(255,255,255,0.55);
}
.sd-seg span.on { background: var(--he-coral); color: #fff; font-weight: 500; }
.sd-tally {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.14);
  display: flex; flex-direction: column; gap: 7px;
}
.sd-tally .r {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.5);
}
.sd-tally .r b { color: #fff; font-weight: 500; }
.sd-tally .r.hl b { color: var(--he-coral); }
.sd-publish {
  margin-top: 13px; width: 100%; padding: 10px;
  border: none; border-radius: 999px;
  background: var(--he-coral); color: #fff;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 500;
  cursor: pointer; transition: transform 0.2s ease;
}
.sd-publish:hover { transform: translateY(-1px); }

/* Feature cards below */
.sd-feats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px; margin-top: 34px;
}
.sd-feat {
  background: var(--he-card); border: 1px solid var(--he-rule);
  border-radius: 15px; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.sd-feat:hover {
  border-color: var(--he-coral); transform: translateY(-3px);
  box-shadow: 0 14px 30px -14px color-mix(in srgb, var(--he-coral) 45%, transparent);
}
.sd-feat .si {
  width: 36px; height: 36px; border-radius: 10px;
  background: color-mix(in srgb, var(--he-coral) 11%, white);
  display: grid; place-items: center;
}
.sd-feat .si svg { width: 18px; height: 18px; fill: none; stroke: var(--he-coral); stroke-width: 1.7; }
.sd-feat .st { font-family: var(--font-display); font-size: 15.5px; font-weight: 500; letter-spacing: -0.018em; color: var(--he-ink); }
.sd-feat .sdz { font-size: 12.5px; line-height: 1.5; color: var(--he-ink-soft); }
.sd-feat .stag {
  margin-top: auto; padding-top: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--he-coral);
}

@media (max-width: 1040px) {
  .sd-body { grid-template-columns: 1fr; }
  .sd-pal, .sd-insp { border: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .sd-pal-items { flex-direction: row; flex-wrap: wrap; }
  .sd-feats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sd-feats { grid-template-columns: 1fr; }
  .sd-seat { width: 11px; height: 11px; }
}


/* Events section — extra proof strip + capability rows */
.sd-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0; margin-top: 34px;
  background: var(--he-card);
  border: 1px solid var(--he-rule);
  border-radius: 16px; overflow: hidden;
}
.sd-stat { padding: 20px 18px; border-right: 1px solid var(--he-rule); }
.sd-stat:last-child { border-right: none; }
.sd-stat .v {
  font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500; letter-spacing: -0.03em; color: var(--he-ink); line-height: 1;
}
.sd-stat .v em { font-family: var(--font-display-serif); font-style: italic; font-weight: 400; color: var(--he-coral); }
.sd-stat .l {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--he-ink-soft); margin-top: 7px;
}
.sd-stat .d { font-size: 12px; line-height: 1.45; color: var(--he-ink-soft); margin-top: 6px; }

.sd-rows2 {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 34px; margin-top: 38px;
}
.sd-col .ch {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--he-coral);
  padding-bottom: 9px; margin-bottom: 12px;
  border-bottom: 1px solid var(--he-rule);
}
.sd-li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; padding: 7px 0; align-items: start; }
.sd-li .tick {
  width: 16px; height: 16px; border-radius: 999px; margin-top: 2px;
  background: color-mix(in srgb, var(--he-coral) 13%, white);
  color: var(--he-coral); display: grid; place-items: center;
  font-size: 9px; font-weight: 700;
}
.sd-li .lt { font-family: var(--font-display); font-size: 13.5px; font-weight: 500; letter-spacing: -0.012em; color: var(--he-ink); }
.sd-li .ld { font-size: 12px; line-height: 1.45; color: var(--he-ink-soft); margin-top: 1px; }

@media (max-width: 1040px) { .sd-rows2 { grid-template-columns: 1fr 1fr; } .sd-stats { grid-template-columns: 1fr 1fr; } .sd-stat:nth-child(2){border-right:none} .sd-stat:nth-child(1),.sd-stat:nth-child(2){border-bottom:1px solid var(--he-rule)} }
@media (max-width: 620px) { .sd-rows2 { grid-template-columns: 1fr; } .sd-stats { grid-template-columns: 1fr; } .sd-stat { border-right: none; border-bottom: 1px solid var(--he-rule); } }
