*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #08baff;
  --blue2: #9ae4fb;
  --blue-dark: #0596d1;
  --navy: #0a1628;
  --navy2: #0d1f38;
  --white: #ffffff;
  --off: #f7f9fc;
  --off2: #f0f4f9;
  --text: #1a2332;
  --sub: #64748b;
  --border: #e2e8f0;
  --border2: #cbd5e1;
  --card: #ffffff;
  --radius: 16px;
  --f: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--off);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeDown 0.5s ease both;
}
.nav-logo img {
  height: 26px;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
nav ul li a:hover {
  color: rgba(255, 255, 255, 0.95);
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-ghost {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  padding: 7px 18px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
  cursor: pointer;
  font-family: var(--f);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(8, 186, 255, 0.5);
  color: var(--white);
}
.btn-blue {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--blue);
  border: none;
  border-radius: 9px;
  padding: 7px 20px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  font-family: var(--f);
  white-space: nowrap;
}
.btn-blue:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(8, 186, 255, 0.4);
}

/* Hamburger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 5% 24px;
  flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
.nav-drawer a:last-child {
  border-bottom: none;
}
.nav-drawer a:hover {
  color: var(--white);
}
.nav-drawer .drawer-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.nav-drawer .drawer-actions a {
  flex: 1;
  text-align: center;
  padding: 11px 0;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: none;
}
.nav-drawer .drawer-actions .btn-ghost {
  padding: 11px 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-drawer .drawer-actions .btn-blue {
  padding: 11px 0;
}

/* ── HERO (blue) ── */
.hero {
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 120%,
      rgba(0, 180, 255, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 20% 80%,
      rgba(154, 228, 251, 0.2) 0%,
      transparent 55%
    ),
    linear-gradient(
      160deg,
      #071529 0%,
      #0a3580 30%,
      #0596d1 62%,
      #08baff 80%,
      #4ad4ff 100%
    );
  padding: 128px 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: visible;
  border-bottom: none;
}
.hero-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.8;
  animation: blink 2s infinite;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 820px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero h1 .grad {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.75) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 16px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.4s ease both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-family: var(--f);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: var(--f);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.5s ease both;
}
.hstat {
  text-align: center;
}
.hstat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}
.hstat-num b {
  color: #fff;
}
.hstat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  margin-top: 2px;
}
.hdiv {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

/* hero mockup */
.hero-mockup {
  position: relative;
  z-index: 1;
  margin-top: 52px;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 64px;
  animation: fadeUp 0.7s 0.6s ease both;
  display: grid;
  grid-template-columns: 1fr 210px 210px;
  gap: 14px;
  align-items: end;
}
.hero-browser {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero-scr {
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}
.hero-scr img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-scr.a {
  height: 420px;
}
.hero-scr.b {
  height: 370px;
}
.hero-scr-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 12px 11px;
  background: linear-gradient(to top, rgba(5, 18, 35, 0.88), transparent);
}
.hero-scr-label span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}
.hero-scr-label strong {
  display: block;
  font-size: 0.73rem;
  font-weight: 800;
  color: #fff;
}

.bshell {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(11, 31, 58, 0.18),
    0 0 0 1px rgba(8, 186, 255, 0.1);
}
.bbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}
.bd {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.bd.r {
  background: #ff5f5a;
}
.bd.y {
  background: #ffbd2e;
}
.bd.g {
  background: #28ca41;
}
.burl {
  flex: 1;
  margin-left: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 0.7rem;
  color: var(--sub);
}
.bbody {
  display: grid;
  grid-template-columns: 188px 1fr;
  min-height: 300px;
}
.bside {
  background: #f7f9fc;
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bside-logo {
  padding: 0 6px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.bside-logo img {
  height: 18px;
}
.bsi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sub);
}
.bsi.on {
  background: rgba(8, 186, 255, 0.1);
  color: var(--blue-dark);
  font-weight: 700;
}
.bsi-ic {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.35;
  flex-shrink: 0;
}
.bmain {
  padding: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bmtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bmtitle {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}
.bmlive {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.bmlive-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1.5s infinite;
}
.bmstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.bms {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 11px;
}
.bms-l {
  font-size: 0.58rem;
  color: var(--sub);
  margin-bottom: 3px;
  font-weight: 500;
}
.bms-v {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}
.bms-v.b {
  color: var(--blue-dark);
}
.bmcharts {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 7px;
}
.bmc {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 11px;
}
.bmc-t {
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 46px;
}
.bar {
  flex: 1;
  border-radius: 3px;
  background: rgba(8, 186, 255, 0.15);
}
.bar.hi {
  background: linear-gradient(to top, var(--blue), rgba(8, 186, 255, 0.4));
}
.bar.t {
  background: linear-gradient(to top, var(--blue2), rgba(154, 228, 251, 0.4));
}
.btop-r {
  display: flex;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.btop-r:last-child {
  border: none;
}
.btop-n {
  font-size: 0.58rem;
  color: var(--text);
  font-weight: 500;
  width: 72px;
  flex-shrink: 0;
}
.btop-bw {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 6px;
}
.btop-bf {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
}
.btop-p {
  font-size: 0.55rem;
  color: var(--sub);
  font-weight: 600;
}

/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 5%;
  text-align: center;
}
.logos-bar p {
  font-size: 0.75rem;
  color: var(--sub);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.logos-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.logos-list span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--border2);
  letter-spacing: -0.02em;
}

/* ── SHARED WHITE SECTION ── */
.wsec {
  padding: 96px 5%;
  max-width: 1180px;
  margin: 0 auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 186, 255, 0.08);
  border: 1px solid rgba(8, 186, 255, 0.2);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.sec-h {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
}
.sec-h .grad {
  background: linear-gradient(135deg, var(--blue), #0596d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-p {
  font-size: 0.95rem;
  color: var(--sub);
  font-weight: 400;
  line-height: 1.75;
  max-width: 460px;
  margin-top: 12px;
}

/* ── HOW IT WORKS (light bg) ── */
.hiw-wrap {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.hiw-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}
.hiw-head {
  text-align: center;
  margin-bottom: 56px;
}
.hiw-head .sec-p {
  max-width: 500px;
  margin: 12px auto 0;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.hiw-step {
  background: var(--white);
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}
.hiw-step:last-child {
  border-right: none;
}
.hiw-step:hover {
  background: rgba(8, 186, 255, 0.025);
}
.hiw-step-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hiw-num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(8, 186, 255, 0.08);
  border: 1px solid rgba(8, 186, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.hiw-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-icon svg {
  display: block;
}
.hiw-step h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.hiw-step p {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.65;
  font-weight: 400;
}

/* ── FEATURE ROWS ── */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 88px 5%;
  max-width: 1180px;
  margin: 0 auto;
}
.feat-row.flip {
  direction: rtl;
}
.feat-row.flip > * {
  direction: ltr;
}
.feat-row-alt {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
}
.feat-list li::before {
  content: '✓';
  color: var(--blue-dark);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  color: var(--blue-dark);
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}
.feat-cta:hover {
  gap: 10px;
}

/* Feature visual card */
.fvis {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}
.fvis::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(8, 186, 255, 0.07), transparent 70%);
  pointer-events: none;
}
.fvis-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}

/* AI upload */
.ai-drop {
  border: 2px dashed rgba(8, 186, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: rgba(8, 186, 255, 0.03);
  margin-bottom: 12px;
}
.ai-drop-ic {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.ai-drop-t {
  font-size: 0.76rem;
  color: var(--sub);
  font-weight: 400;
}
.ai-drop-t strong {
  color: var(--blue-dark);
  font-weight: 700;
}
.ai-prog-wrap {
  background: var(--off);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}
.ai-prog-l {
  font-size: 0.68rem;
  color: var(--sub);
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-weight: 500;
}
.ai-prog-l span:last-child {
  color: var(--blue-dark);
  font-weight: 700;
}
.ai-bar {
  height: 5px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.ai-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  width: 78%;
  animation: grow 2s ease-in-out infinite alternate;
}
.ai-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ai-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off);
  border-radius: 8px;
  padding: 8px 11px;
  border: 1px solid var(--border);
}
.ai-name {
  font-size: 0.72rem;
  color: var(--text);
  font-weight: 600;
}
.ai-price {
  font-size: 0.72rem;
  color: var(--blue-dark);
  font-weight: 800;
}
.ai-tag {
  font-size: 0.6rem;
  background: rgba(8, 186, 255, 0.1);
  color: var(--blue-dark);
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 700;
}

/* Analytics visual */
.av-big {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.av-big b {
  color: var(--blue-dark);
}
.av-lbl {
  font-size: 0.73rem;
  color: var(--sub);
  font-weight: 400;
  margin-bottom: 12px;
}
.av-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(8, 186, 255, 0.08);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.av-minibars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  margin-bottom: 14px;
}
.av-mb {
  flex: 1;
  border-radius: 3px;
  background: rgba(8, 186, 255, 0.12);
}
.av-mb.on {
  background: linear-gradient(to top, var(--blue), rgba(8, 186, 255, 0.3));
}
.av-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.av-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.av-rn {
  font-size: 0.7rem;
  color: var(--text);
  font-weight: 500;
  width: 115px;
  flex-shrink: 0;
}
.av-rbw {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.av-rbf {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
}
.av-rv {
  font-size: 0.64rem;
  color: var(--sub);
  font-weight: 600;
  width: 38px;
  text-align: right;
  flex-shrink: 0;
}

/* QR visual */
.qr-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.qr-sq {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.qr-link {
  font-size: 0.8rem;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 3px;
}
.qr-hint {
  font-size: 0.7rem;
  color: var(--sub);
  font-weight: 400;
}
.qr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 12px;
}
.qr-stat {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.qr-stat-v {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1px;
}
.qr-stat-v.b {
  color: var(--blue-dark);
}
.qr-stat-l {
  font-size: 0.6rem;
  color: var(--sub);
  font-weight: 400;
}
.qr-share {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.qr-share-l {
  font-size: 0.68rem;
  color: var(--sub);
  margin-bottom: 8px;
  font-weight: 500;
}
.qr-share-btns {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.qr-share-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 0.7rem;
  color: var(--text);
  font-weight: 500;
}

/* ── FEATURES GRID ── */
.feats-wrap {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.feats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}
.feats-head {
  margin-bottom: 52px;
}
.feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.fg {
  background: var(--white);
  padding: 30px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.fg:hover {
  background: rgba(8, 186, 255, 0.025);
}
.fg:nth-child(3n) {
  border-right: none;
}
.fg:nth-child(n + 4) {
  border-bottom: none;
}
.fg-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(8, 186, 255, 0.08);
  border: 1px solid rgba(8, 186, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.fg h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 7px;
}
.fg p {
  font-size: 0.81rem;
  color: var(--sub);
  line-height: 1.65;
  font-weight: 400;
}
.fg-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(8, 186, 255, 0.08);
  color: var(--blue-dark);
}

/* ── METRICS ── */
.metrics {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  margin: 80px 0;
}
.mitem {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.mitem:last-child {
  border-right: none;
}
.mitem:hover {
  background: rgba(8, 186, 255, 0.025);
}
.mnum {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.mnum b {
  color: var(--blue-dark);
}
.mlbl {
  font-size: 0.78rem;
  color: var(--sub);
  font-weight: 400;
}

/* ── TESTIMONIALS ── */
.testi-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}
.testi-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}
.testi-head {
  text-align: center;
  margin-bottom: 52px;
}
.testi-head .sec-p {
  max-width: 480px;
  margin: 12px auto 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tcard {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.tcard:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.t-stars {
  color: var(--blue);
  font-size: 0.8rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.t-q {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 18px;
}
.t-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
  color: #fff;
  flex-shrink: 0;
}
.t-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.t-biz {
  font-size: 0.72rem;
  color: var(--sub);
  font-weight: 400;
}

/* ── PRICING ── */
.pricing-wrap {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}
.pricing-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}
.pricing-inner .sec-p {
  max-width: 460px;
  margin: 12px auto 0;
}
.ptoggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin: 32px 0 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.ptog {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 7px;
  background: transparent;
  color: var(--sub);
  border: none;
  cursor: pointer;
  font-family: var(--f);
  transition: all 0.2s;
}
.ptog.on {
  background: var(--blue);
  color: var(--navy);
  font-weight: 800;
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.plan:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}
.plan.pop {
  border-color: var(--blue);
  box-shadow:
    0 0 0 3px rgba(8, 186, 255, 0.12),
    0 12px 40px rgba(8, 186, 255, 0.1);
}
.plan.pop:hover {
  box-shadow:
    0 0 0 3px rgba(8, 186, 255, 0.15),
    0 20px 60px rgba(8, 186, 255, 0.15);
  transform: translateY(-3px);
}
.pbadge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.pname {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pprice {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pprice sup {
  font-size: 0.95rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}
.pprice sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--sub);
  vertical-align: bottom;
}
.pdesc {
  font-size: 0.82rem;
  color: var(--sub);
  font-weight: 400;
  line-height: 1.65;
  margin: 12px 0 20px;
}
.pfeats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pfeats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
}
.pfeats li::before {
  content: '✓';
  color: var(--blue-dark);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pbtn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 11px;
  font-family: var(--f);
  font-weight: 700;
  font-size: 0.85rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pbtn.out {
  border: 1.5px solid var(--border2);
  color: var(--text);
}
.pbtn.out:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}
.pbtn.sol {
  background: var(--blue);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(8, 186, 255, 0.25);
}
.pbtn.sol:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(8, 186, 255, 0.4);
}

/* ── FAQ ── */
.faq-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}
.faq-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5%;
}
.faq-head {
  text-align: center;
  margin-bottom: 44px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  text-align: left;
  font-family: var(--f);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--blue-dark);
}
.faq-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(8, 186, 255, 0.1);
  border: 1px solid rgba(8, 186, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blue-dark);
  transition: transform 0.3s;
}
.faq-item.open .faq-ic {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.86rem;
  color: var(--sub);
  line-height: 1.75;
  font-weight: 400;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 16px;
}

/* ── CTA BANNER (dark) ── */
.cta-banner {
  margin: 80px 4%;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 15% 50%,
    rgba(8, 186, 255, 0.1),
    transparent 60%
  );
  pointer-events: none;
}
.cta-copy {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 12px;
}
.cta-copy h2 .grad {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-copy p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 26px;
}
.cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-logo {
  margin-bottom: 24px;
}
.cta-logo img {
  height: 24px;
  opacity: 0.9;
}
.cta-visual {
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.cv-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.cv-t {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cv-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--blue2);
}
.cv-ld {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1.5s infinite;
}
.cv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.cv-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 11px;
}
.cv-sl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}
.cv-sv {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}
.cv-sv.b {
  color: var(--blue);
}
.cv-chart {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 11px;
}
.cv-cl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 7px;
}
.cv-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 38px;
}
.cv-bar {
  flex: 1;
  border-radius: 3px;
  background: rgba(8, 186, 255, 0.12);
}
.cv-bar.on {
  background: linear-gradient(to top, var(--blue), rgba(8, 186, 255, 0.3));
}
.cv-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cv-item:last-child {
  border: none;
}
.cv-in {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.6);
}
.cv-iv {
  font-size: 0.63rem;
  color: var(--blue2);
  font-weight: 700;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 6%;
}
.ft-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.ft-logo-img {
  height: 22px;
  opacity: 0.92;
}
.ft-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
}
.ft-right {
  text-align: right;
}
.ft-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 3px;
}
.ft-made {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.18);
}
@media (max-width: 600px) {
  .ft-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .ft-right {
    text-align: left;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes grow {
  from {
    width: 40%;
  }
  to {
    width: 92%;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .feat-row,
  .feat-row.flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
  .hiw-steps {
    grid-template-columns: 1fr 1fr;
  }
  .feats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pgrid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    grid-template-columns: 1fr;
  }
  .cta-visual {
    display: none;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .bbody {
    grid-template-columns: 1fr;
  }
  .bside {
    display: none;
  }
  .hero-mockup {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .hero-browser {
    grid-column: 1 / -1;
  }
  .hero-scr {
    display: block;
  }
  .hero-scr.a {
    height: 260px;
  }
  .hero-scr.b {
    height: 260px;
  }
}
@media (max-width: 540px) {
  .hiw-steps,
  .feats-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
  .hdiv {
    display: none;
  }
}

/* ── APP SHOWCASE SECTION ── */
.showcase-wrap {
  background: var(--white);
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}
.showcase-noise {
  display: none;
}
.showcase-glow-l {
  display: none;
}
.showcase-glow-r {
  display: none;
}
.showcase-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.showcase-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
}
.showcase-head-left .pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 186, 255, 0.08);
  border: 1px solid rgba(8, 186, 255, 0.2);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.showcase-head-left h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
}
.showcase-head-left h2 .grad {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.showcase-head-right p {
  font-size: 0.95rem;
  color: var(--sub);
  font-weight: 400;
  line-height: 1.75;
}
.showcase-head-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--blue-dark);
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}
.showcase-head-right a:hover {
  gap: 10px;
}

/* ── SCROLL STRIP ── */
.showcase-strip {
  display: flex;
  gap: 20px;
  padding-bottom: 0;
  /* let it overflow naturally, we'll use the fade mask trick */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

/* Each screen card */
.sc-card {
  flex-shrink: 0;
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.06);
}
.sc-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.14),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

.sc-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px 20px 0 0;
}

/* Size variants */
.sc-card.tall {
  width: 260px;
  height: 520px;
}
.sc-card.short {
  width: 240px;
  height: 460px;
  margin-top: 60px;
}

/* Overlay label on hover */
.sc-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.88), transparent);
  padding: 32px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-radius: 0 0 20px 20px;
}
.sc-card:hover .sc-card-label {
  transform: translateY(0);
}
.sc-card-label-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.sc-card-label-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Top fade on cards */
.sc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

/* Bottom fade into section */
.showcase-floor {
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--off));
  position: relative;
  z-index: 2;
  margin-top: -2px;
}

/* Feature pills row */
.showcase-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 5% 60px;
  position: relative;
  z-index: 3;
  background: var(--off);
  border-bottom: 1px solid var(--border);
}
.sc-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sc-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .showcase-head {
    grid-template-columns: 1fr;
  }
  .sc-card.short {
    margin-top: 30px;
  }
  .sc-card.tall {
    width: 200px;
    height: 400px;
  }
  .sc-card.short {
    width: 185px;
    height: 360px;
  }
  .showcase-strip {
    gap: 14px;
  }
}
