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

html {
  scroll-behavior: smooth;
}

:root {
  /* Electric blue developer palette */
  --dark: #0A0E17;
  --dark2: #0F1520;
  --dark3: #141B28;
  --dark4: #1A2235;
  --blue: #2563EB;
  --blue2: #1D4ED8;
  --blue-gl: rgba(37, 99, 235, .08);
  --blue-gm: rgba(37, 99, 235, .15);
  --cyan: #06B6D4;
  --cyan-gl: rgba(6, 182, 212, .07);
  --green: #10B981;
  --yellow: #F59E0B;
  --red: #EF4444;
  --white: #FFFFFF;
  --off: #F8F9FB;
  --off2: #F1F3F8;
  --off3: #E8EBF2;
  --ink: #1E293B;
  --ink2: #334155;
  --muted: #94A3B8;
  --border: #E2E8F0;
  --dborder: rgba(255, 255, 255, .07);

  --display: 'poppins', sans-serif;
  --body: 'poppins', sans-serif;
  --mono: 'poppins', monospace;

  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --rpill: 999px;
  --s1: 0 1px 4px rgba(0, 0, 0, .06);
  --s2: 0 4px 20px rgba(0, 0, 0, .08);
  --s3: 0 12px 44px rgba(0, 0, 0, .1);
  --s4: 0 24px 72px rgba(0, 0, 0, .14);
  --sglow: 0 0 40px rgba(37, 99, 235, .2), 0 4px 24px rgba(37, 99, 235, .12);
}

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

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

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

.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(--display);
  font-weight: 700;
  border-radius: var(--r8);
  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-blue {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
}

.btn-blue:hover {
  background: #4a87b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, .4);
}

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

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

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .28);
}

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

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-1px);
}

/* 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, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 44px; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 9px; }
.nav-logo-box { width: 32px; height: 32px; background: var(--cyan); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo-box span { font-family: var(--display); font-weight: 900; font-size: 17px; color: #fff; }
.nav-wordmark { font-family: var(--display); font-weight: 600; font-size: 19px; color: #000; letter-spacing: -.03em; }
.nav-wordmark em { color: var(--cyan); font-style: normal; }
.nav-crumb { font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    background: var(--paper2);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: var(--rpill);
    display: flex;
    align-items: center;
    gap: 6px;}
.nav-crumb a { color: #94A3B8; transition: color .2s; }
.nav-crumb a:hover { color: var(--cyan); }
.nav-crumb .cur { color: var(--cyan); }
.nav-crumb .sep { color: rgba(255,255,255,.15); }
.nav-r { display: flex; align-items: center; gap: 10px; }*/

/* ── HERO — Full dark, terminal glow ── */
.hero {
  background: #fbfcff;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Blue glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, .12) 0%, transparent 65%);
  pointer-events: none;
}

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

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

/* Left */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-gl);
  border: 1px solid rgba(6, 182, 212, .18);
  padding: 4px 12px;
  border-radius: var(--rpill);
  margin-bottom: 22px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pcyan 1.8s 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);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
@keyframes pcyan {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, .5);
  }

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

.hero-h1 {
  font-family: poppins;
  font-weight: 600;
  font-size: 50px;
  line-height: .95;
  letter-spacing: -.045em;
  color: #000000;
  margin-bottom: 22px;
}

.hero-h1 .blue {
  color: var(--cyan);
  font-weight: 600;
  line-height: 1.2;
}

.hero-h1 .cyan {
  color: var(--cyan);
  font-weight: 600;
}

.hero-desc {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 520px;
  margin: 20px 0 36px;
  animation: fu .5s .2s ease both;
}

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

/* ── QUERY BUILDER WIDGET ── */
.qb-widget {
  background: var(--dark2);
  border: 1px solid var(--dborder);
  border-radius: var(--r16);
  box-shadow: var(--sglow), var(--s4);
  overflow: hidden;
}

.qb-topbar {
  background: var(--dark3);
  border-bottom: 1px solid var(--dborder);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

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

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

.qb-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  background: var(--cyan-gl);
  border: 1px solid rgba(6, 182, 212, .2);
  padding: 2px 9px;
  border-radius: var(--rpill);
  display: flex;
  align-items: center;
  gap: 5px;
}

.qb-badge-dot {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pcyan 1.6s infinite;
}

/* Schema table cards */
.qb-canvas {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--dark2);
  min-height: 260px;
}

.qb-tables {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.schema-table {
  background: var(--dark3);
  border: 1px solid var(--dborder);
  border-radius: var(--r12);
  overflow: hidden;
  flex: 1;
  min-width: 140px;
  transition: border-color .2s;
}

.schema-table:hover {
  border-color: rgba(37, 99, 235, .4);
}

.st-head {
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--dborder);
}

.st-ico {
  font-size: 12px;
}

.st-rows {
  padding: 4px 0;
}

.st-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  transition: background .15s;
}

.st-row:hover {
  background: rgba(255, 255, 255, .04);
}

.st-row.selected {
  color: var(--cyan);
  background: rgba(6, 182, 212, .05);
}

.st-row.pk {
  color: var(--yellow);
}

.st-type {
  margin-left: auto;
  font-size: 9px;
  color: rgba(255, 255, 255, .2);
}

.st-key {
  font-size: 9px;
}

/* Join connector visual */
.join-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 8px;
  position: relative;
}

.join-dot-l,
.join-dot-r {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid var(--dark2);
  flex-shrink: 0;
}

.join-dash {
  flex: 1;
  height: 2px;
  min-width: 40px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0, var(--cyan) 5px, transparent 5px, transparent 10px);
  position: relative;
}

.join-label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--cyan);
  background: var(--dark2);
  padding: 1px 6px;
  border: 1px solid rgba(37, 99, 235, .3);
  border-radius: var(--rpill);
  white-space: nowrap;
}

/* Generated SQL panel */
.sql-panel {
  background: #000000;
  border: 1px solid var(--dborder);
  border-radius: var(--r12);
  overflow: hidden;
}

.sql-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-bottom: 1px solid var(--dborder);
}

.sql-panel-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sql-copy-btn {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  background: var(--cyan-gl);
  border: 1px solid rgba(6, 182, 212, .2);
  padding: 2px 8px;
  border-radius: var(--rpill);
  cursor: pointer;
  transition: all .2s;
}

.sql-copy-btn:hover {
  background: rgba(6, 182, 212, .15);
}

.sql-code {
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
}

.sql-kw {
  color: var(--cyan);
  font-weight: 600;
}

.sql-tbl {
  color: var(--cyan);
}

.sql-col {
  color: rgba(255, 255, 255, .75);
}

.sql-str {
  color: var(--yellow);
}

.sql-op {
  color: var(--green);
}

.sql-cmt {
  color: rgba(255, 255, 255, .25);
  font-style: italic;
}

/* ── MARQUEE ── */
.marquee {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 14px 0;
  overflow: hidden;
}

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

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

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

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

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

.mdot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, .6);
  border-radius: 50%;
}

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

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

.stat-cell {
  padding: 26px 22px;
  text-align: center;
  background: var(--white);
}

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

.stat-val {
  font-family: var(--display);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -.06em;
  line-height: 1;
}

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

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

.logo-lbl {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
}

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

.logo-chip {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--surface);
  letter-spacing: -.02em;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: all .2s;
  cursor: default;
}

.logo-chip:hover {
  color: var(--ink2);
  border-color: #000000;
}

/* ── WHAT IS IT ── */
.def-sec {
  background: var(--white);
}

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

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-gl);
  border: 1px solid rgba(37, 99, 235, .15);
  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: var(--cyan);
}

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

.sec-h2 em {
  color: var(--cyan);
  font-style: normal;
}

.sec-h2 .cyan {
  color: var(--cyan);
}

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

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

/* Workflow steps vertical */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  overflow: hidden;
}

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

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

.wf-item:hover {
  background: var(--blue-gl);
}

.wf-side {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-right: 1px solid var(--border);
  background: var(--off);
}

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

.wf-ico {
  font-size: 14px;
  margin-top: 4px;
}

.wf-body {
  padding: 16px 20px;
}

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

.wf-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 4px;
}

.wf-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FEATURES 3-COL ── */
.feat-sec {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.fc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  padding: 30px;
  transition: all .25s;
}

.fc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s3);
  border-color: rgba(37, 99, 235, .25);
}

.fc-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.fc-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: #000000;
  letter-spacing: -.02em;
  margin-bottom: 9px;
}

.fc-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.72;
}

.fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--rpill);
}

/* ── SPLIT SECTION: Builder Demo ── */
.builder-sec {
  background: var(--white);
}

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

.builder-right {
  background: #000000;
  border: 1px solid var(--dborder);
  border-radius: var(--r20);
  overflow: hidden;
  box-shadow: var(--sglow);
}

.br-topbar {
  background: var(--dark3);
  border-bottom: 1px solid var(--dborder);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.br-tabs {
  display: flex;
  gap: 0;
}

.br-tab {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

/* .br-tab.active {
  color: var(--cyan);
  border-color: var(--cyan);
} */

.br-body {
  padding: 0;
}

/* Table schema panel */
.schema-panel {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.mini-table {
  background: var(--dark3);
  border: 1px solid var(--dborder);
  border-radius: var(--r10);
  overflow: hidden;
}

.mt-head {
  padding: 7px 12px;
  border-bottom: 1px solid var(--dborder);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mt-field {
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}

.mt-field:last-child {
  border-bottom: none;
}

.mt-field.sel {
  color: var(--cyan);
  background: rgba(6, 182, 212, .05);
}

.mt-field.pk {
  color: var(--yellow);
}

.mt-field .ftype {
  margin-left: auto;
  font-size: 9px;
  color: rgba(255, 255, 255, .18);
}

.join-connector {
  text-align: center;
}

.jc-icon {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .25);
  padding: 4px 10px;
  border-radius: var(--rpill);
  display: inline-block;
}

/* Code output tab */
.code-output {
  padding: 16px;
}

.co-line {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  white-space: pre;
}

/* Filter builder */
.filter-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--dborder);
}

.filter-chip {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--rpill);
  white-space: nowrap;
}

.fc-blue {
  background: rgba(37, 99, 235, .15);
  color: #93C5FD;
  border: 1px solid rgba(37, 99, 235, .25);
}

.fc-cyan {
  background: rgba(6, 182, 212, .12);
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, .22);
}

.fc-green {
  background: rgba(16, 185, 129, .12);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, .22);
}

.fc-yellow {
  background: rgba(245, 158, 11, .12);
  color: #FDE68A;
  border: 1px solid rgba(245, 158, 11, .22);
}

.fc-muted {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .35);
  border: 1px solid var(--dborder);
}

/* ── FREE EXPORT CALLOUT ── */
.export-sec {
  background: #000000;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.export-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.export-sec::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(6, 182, 212, .08) 0%, transparent 65%);
  pointer-events: none;
}

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

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

.export-h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 48px);
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 18px;
}

.export-h2 em {
  color: var(--cyan);
  font-style: normal;
}

.export-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-bottom: 28px;
}

.export-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.export-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

.el-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(37, 99, 235, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.el-icon.c {
  background: rgba(6, 182, 212, .15);
}

.el-icon.g {
  background: rgba(16, 185, 129, .15);
}

.export-code-block {
  background: var(--dark3);
  border: 1px solid var(--dborder);
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: var(--s4);
}

.ecb-top {
  padding: 10px 16px;
  border-bottom: 1px solid var(--dborder);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ecb-filename {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}

.ecb-lang {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(37, 99, 235, .25);
  padding: 2px 8px;
  border-radius: var(--rpill);
}

.ecb-body {
  padding: 16px 18px;
}

.code-ln {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.75;
  display: flex;
  gap: 18px;
}

.ln-num {
  color: rgba(255, 255, 255, .18);
  min-width: 16px;
  text-align: right;
  user-select: none;
}

.ln-code {
  flex: 1;
}

.export-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.etab {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--rpill);
  cursor: pointer;
  transition: all .2s;
    color: rgba(255, 255, 255, .3);
}



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

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

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

.ac:hover {
  background: var(--blue-gl);
}

.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: 24px;
  margin-bottom: 12px;
  display: block;
}

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

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

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

/* ── COMPARE ── */
.cmp-sec {
  background: var(--white);
}

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

.cmp-table th {
  padding: 15px 20px;
  font-family: var(--display);
  font-weight: 700;
  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(--white);
}

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

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

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

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

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

.tcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  padding: 30px;
  transition: all .25s;
}

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

.tcard-mark {
  font-size: 40px;
  color: var(--cyan);
  opacity: .2;
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

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

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

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

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

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

/* ── FAQ ── */
.faq-sec {
  background: var(--white);
  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(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r12);
  padding: 22px 24px;
  cursor: pointer;
  transition: all .2s;
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--cyan);
  background: var(--blue-gl);
}

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

.faq-icon {
  color: var(--cyan);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-a {
  font-size: 14px;
  color: var(--ink2);
  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::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 99, 235, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-sec::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, .12) 0%, transparent 65%);
  pointer-events: none;
}

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

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

.cta-h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: .98;
  letter-spacing: -.045em;
  color: #fff;
  margin-bottom: 16px;
}

.cta-h2 em {
  color: var(--cyan);
  font-style: normal;
}

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

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

.cta-inp {
  flex: 1;
  font-family: var(--body);
  font-size: 15px;
  color: #000000;
  background: var(--white);
  border: none;
  border-radius: var(--r8);
  padding: 14px 18px;
  outline: none;
}

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

.cta-btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--cyan);
  border: none;
  padding: 14px 24px;
  border-radius: var(--r8);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .4);
  transition: all .2s;
}

.cta-btn:hover {
  background: #4a87b8;
  transform: translateY(-1px);
}

.cta-fine {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .22);
  letter-spacing: .06em;
}

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

.cta-other a {
  color: var(--cyan);
  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);
}

.foot-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 48px;
}
.footer-logo {
  width: 112px;
  height: 30px;
  object-fit: contain;
}

.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: #06B6D4;
  border-radius: 2px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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,
  .def-grid,
  .builder-grid,
  .export-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .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;
  }

  .testi-grid {
    grid-template-columns: 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-crumb {
    display: none;
  } */
}

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

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

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

  .hero-h1 {
    font-size: 44px;
  }
}
/* ── 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: "Traditional BI / SQL Tools";
    color: var(--muted);
  }

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

 
}

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

  .cmp-table td::before {
    font-size: 10px !important;
  }
    .hero-h1 {
        font-size: 38px;
        line-height: 1.1;
    }
}

@media (max-width: 320px) {
  .cmp-table td {
    padding: 10px 12px;
    font-size: 11px;
  }
}
@media (max-width: 441px){
  .sec-h2 {
    font-size: clamp(25px, 3.2vw, 44px);
}
}

