/* ============================================================
   Transform Data — Landing Page
   Fonts: Fustat (display), Schibsted Grotesk (UI), Inter (labels)
   ============================================================ */

:root {
  --black: #000000;
  --gray: #505050;
  --gray-light: #f8f8f8;
  --gray-mid: #e8e8e8;
  --green: rgba(90, 225, 76, 0.89);
  --green-solid: #3fce30;
  --dark: #0e1311;
  --white: #ffffff;
  --overlay: rgba(0, 0, 0, 0.24);

  --pad-x: 120px;
  --maxw: 1200px;

  --font-display: "Fustat", system-ui, sans-serif;
  --font-ui: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  overflow: visible;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, video { display: block; }

.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

@media (max-width: 1100px) {
  :root { --pad-x: 48px; }
}
@media (max-width: 640px) {
  :root { --pad-x: 22px; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
              padding 0.35s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0));
  opacity: 1;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.05);
  padding-top: 11px;
  padding-bottom: 11px;
}
.nav.scrolled::before { opacity: 0; }

.nav__logo {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -1.44px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav__logo .dot {
  width: 16px; height: 16px; border-radius: 5px;
  background: var(--black);
  display: inline-block;
  position: relative;
}
.nav__logo .dot::after {
  content: ""; position: absolute; inset: 4px;
  background: var(--green-solid); border-radius: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.nav__menu a {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--black);
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s var(--ease);
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px; background: var(--black);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__menu a:hover { opacity: 0.62; }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__menu a:hover svg { opacity: 0.62; }
.nav__menu svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease), opacity 0.2s; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.btn {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.2px;
  border-radius: 10px;
  height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.18s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:active { transform: scale(0.96); }
.btn--ghost { width: 82px; background: transparent; color: var(--black); }
.btn--ghost:hover { background: rgba(0,0,0,0.05); }
.btn--dark { width: 101px; background: var(--black); color: var(--white); }
.btn--dark:hover { background: #1d1d1d; box-shadow: 0 8px 22px rgba(0,0,0,0.22); }

.nav__burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(700px, 100vh, 1000px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 104px 0 72px;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #cfd6d2;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 115%;
  height: 115%;
  object-fit: cover;
  object-position: top center;
  opacity: 1;
  will-change: opacity;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.0), rgba(255,255,255,0.35) 75%),
    linear-gradient(to bottom, rgba(255,255,255,0.25), rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -50px;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
}
.badge__chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--dark); color: var(--white);
  border-radius: 999px; padding: 4px 10px;
  font-size: 12px; font-weight: 500;
}
.badge__chip svg { width: 12px; height: 12px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  letter-spacing: -4.8px;
  line-height: 0.98;
  color: var(--black);
  margin-top: 34px;
  max-width: 12ch;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--gray);
  margin-top: 34px;
  max-width: 736px;
  width: 542px;
  line-height: 1.45;
  text-wrap: pretty;
}

/* search box */
.searchbox {
  margin-top: 44px;
  width: 100%;
  max-width: 728px;
  min-height: 200px;
  border-radius: 18px;
  background: var(--overlay);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(255,255,255,0.12);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.searchbox__top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-ui); font-weight: 500; font-size: 12px;
  color: var(--white);
  padding: 2px 6px;
}
.searchbox__credits { display: inline-flex; align-items: center; gap: 9px; }
.searchbox__upgrade {
  background: var(--green); color: #06250b;
  font-family: var(--font-ui); font-weight: 600; font-size: 11px;
  padding: 3px 9px; border-radius: 999px;
  transition: transform 0.15s var(--ease), filter 0.2s;
}
.searchbox__upgrade:hover { filter: brightness(1.08); transform: translateY(-1px); }
.searchbox__powered { display: inline-flex; align-items: center; gap: 6px; opacity: 0.9; }
.searchbox__powered svg { width: 14px; height: 14px; }

.searchbox__input {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.16);
  display: flex; align-items: center;
  padding: 12px 12px 12px 18px;
  gap: 12px;
}
.searchbox__input input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font-ui); font-size: 16px; color: var(--black);
}
.searchbox__input input::placeholder { color: rgba(0,0,0,0.6); }
.searchbox__submit {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--black); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.18s var(--ease), background 0.2s;
}
.searchbox__submit:hover { background: #222; transform: translateY(-1px); }
.searchbox__submit:active { transform: scale(0.92); }
.searchbox__submit svg { width: 18px; height: 18px; }

.searchbox__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 2px;
}
.searchbox__actions { display: flex; gap: 8px; }
.chip-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.92);
  border-radius: 6px; padding: 6px 11px;
  font-family: var(--font-ui); font-weight: 500; font-size: 12.5px;
  color: #2a2a2a;
  transition: background 0.2s var(--ease), transform 0.15s;
}
.chip-btn:hover { background: #fff; transform: translateY(-1px); }
.chip-btn svg { width: 14px; height: 14px; }
.searchbox__counter {
  font-family: var(--font-ui); font-size: 12px; color: rgba(255,255,255,0.72);
}

.hero__scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}
.hero__scrollcue .mouse {
  width: 22px; height: 34px; border-radius: 12px; border: 1.5px solid rgba(0,0,0,0.4);
  position: relative;
}
.hero__scrollcue .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; border-radius: 2px; background: rgba(0,0,0,0.5);
  animation: scrollwheel 1.6s var(--ease) infinite;
}
@keyframes scrollwheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 86px 0; }
.eyebrow {
  font-family: var(--font-ui); font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--green-solid);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--green-solid); border-radius: 2px; }
.section__head { max-width: 680px; }
.section__head--center { margin: 0 auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 52px; letter-spacing: -2.4px; line-height: 1.02;
  margin-top: 18px; text-wrap: balance;
}
.lead {
  font-family: var(--font-display); font-weight: 500; font-size: 19px;
  letter-spacing: -0.3px; color: var(--gray); margin-top: 18px; line-height: 1.5;
  text-wrap: pretty;
}

/* ============================================================
   LOGO CLOUD
   ============================================================ */
.logos { padding: 56px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.logos__label {
  text-align: center; font-family: var(--font-ui); font-weight: 500; font-size: 13px;
  color: #9a9a9a; letter-spacing: 0.3px; margin-bottom: 30px;
}
.logos__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.logos__row .logo-mark {
  font-family: var(--font-ui); font-weight: 700; font-size: 22px; letter-spacing: -0.8px;
  color: #b4b4b4; display: inline-flex; align-items: center; gap: 9px;
  filter: grayscale(1); opacity: 0.78;
  transition: opacity 0.3s var(--ease), color 0.3s;
}
.logos__row .logo-mark:hover { opacity: 1; color: #444; }
.logos__row .logo-mark svg { width: 24px; height: 24px; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.09);
  background: #fff;
}
.feature-card.span-2 { grid-column: span 2; }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--black); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-card.accent .feature-card__icon { background: var(--green-solid); color: #06250b; }
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 23px;
  letter-spacing: -0.8px; margin-bottom: 10px;
}
.feature-card p {
  font-family: var(--font-body); font-size: 15.5px; color: var(--gray); line-height: 1.55;
}
.feature-card__visual {
  margin-top: 24px; height: 150px; border-radius: 12px;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 10px, rgba(0,0,0,0.015) 10px 20px);
  border: 1px solid var(--gray-mid);
  display: flex; align-items: flex-end; gap: 8px; padding: 16px;
}
.feature-card__visual .bar { flex: 1; background: var(--black); border-radius: 4px 4px 0 0; opacity: 0.82; }
.feature-card.accent .feature-card__visual .bar { background: var(--green-solid); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { padding: 0 34px; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; right: -1px; width: 1px; height: calc(100% - 26px);
  background: var(--gray-mid);
}
.step:first-child { padding-left: 0; }
.step__num {
  width: 52px; height: 52px; border-radius: 14px;
  border: 1.5px solid var(--black);
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step:nth-child(2) .step__num { background: var(--black); color: #fff; }
.step:nth-child(3) .step__num { background: var(--green-solid); border-color: var(--green-solid); color: #06250b; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.9px; margin-bottom: 11px; }
.step p { font-family: var(--font-body); font-size: 15.5px; color: var(--gray); line-height: 1.55; }

/* ============================================================
   SHOWCASE (tabs)
   ============================================================ */
.showcase { background: var(--gray-light); }
.showcase__tabs {
  margin-top: 48px; display: inline-flex; gap: 6px; padding: 6px;
  background: #fff; border: 1px solid var(--gray-mid); border-radius: 14px;
}
.tab {
  font-family: var(--font-ui); font-weight: 500; font-size: 15px; letter-spacing: -0.2px;
  padding: 10px 20px; border-radius: 10px; color: var(--gray);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.tab.active { background: var(--black); color: #fff; }
.tab:not(.active):hover { color: var(--black); }

.showcase__stage {
  margin-top: 36px;
  background: #fff; border: 1px solid var(--gray-mid); border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.08);
  overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr;
}
.showcase__copy { padding: 56px 52px; }
.showcase__copy h3 { font-family: var(--font-display); font-weight: 700; font-size: 34px; letter-spacing: -1.5px; line-height: 1.05; }
.showcase__copy p { font-family: var(--font-body); font-size: 16px; color: var(--gray); line-height: 1.6; margin-top: 16px; }
.showcase__list { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.showcase__list li { display: flex; gap: 12px; align-items: flex-start; font-family: var(--font-body); font-size: 15px; }
.showcase__list .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: var(--green-solid);
  display: inline-flex; align-items: center; justify-content: center; color: #06250b; margin-top: 1px;
}
.showcase__list .tick svg { width: 13px; height: 13px; }
.showcase__panel-wrap { position: relative; }
.showcase__panel {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.02);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.showcase__panel.active { opacity: 1; transform: scale(1); pointer-events: auto; position: relative; }
.tab-content { display: none; }
.tab-content.active { display: grid; }

/* fake product UI placeholder */
.mockui {
  height: 100%; min-height: 440px; background: #0e1311;
  padding: 26px; display: flex; flex-direction: column; gap: 16px;
}
.mockui__bar { display: flex; gap: 7px; align-items: center; }
.mockui__bar .d { width: 11px; height: 11px; border-radius: 999px; background: rgba(255,255,255,0.22); }
.mockui__row { display: flex; gap: 14px; flex: 1; }
.mockui__panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.mockui__line { height: 9px; border-radius: 5px; background: rgba(255,255,255,0.12); }
.mockui__line.w70 { width: 70%; } .mockui__line.w50 { width: 50%; } .mockui__line.w90 { width: 90%; }
.mockui__line.accent { background: var(--green); width: 40%; height: 12px; }
.mockui__chart { flex: 1; display: flex; align-items: flex-end; gap: 8px; padding-top: 10px; }
.mockui__chart .b { flex: 1; background: linear-gradient(to top, rgba(90,225,76,0.85), rgba(90,225,76,0.25)); border-radius: 5px 5px 0 0; }
.mockui__tag { font-family: var(--font-ui); font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.4px; }

/* ============================================================
   STATS (dark band)
   ============================================================ */
.stats { background: var(--dark); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: left; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: 62px; letter-spacing: -3px; line-height: 1; }
.stat__num .suffix { color: var(--green-solid); }
.stat__label { font-family: var(--font-ui); font-size: 15px; color: rgba(255,255,255,0.62); margin-top: 12px; letter-spacing: -0.2px; }
.stats .section__head .h2 { color: #fff; }
.stats .lead { color: rgba(255,255,255,0.66); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tcols { margin-top: 60px; columns: 3; column-gap: 20px; }
.tcard {
  break-inside: avoid; margin-bottom: 20px;
  background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: 18px;
  padding: 26px 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0,0,0,0.08); }
.tcard.feature { background: var(--black); color: #fff; }
.tcard__quote { font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: -0.4px; line-height: 1.5; }
.tcard.feature .tcard__quote { font-size: 22px; }
.tcard__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--green-solid); }
.tcard__stars svg { width: 15px; height: 15px; }
.tcard__person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tcard__avatar { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(135deg, #c9c9c9, #ededed); flex-shrink: 0; }
.tcard.feature .tcard__avatar { background: linear-gradient(135deg, rgba(90,225,76,0.7), rgba(90,225,76,0.2)); }
.tcard__name { font-family: var(--font-ui); font-weight: 600; font-size: 14px; }
.tcard__role { font-family: var(--font-body); font-size: 13px; color: var(--gray); }
.tcard.feature .tcard__role { color: rgba(255,255,255,0.6); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__toggle {
  margin: 30px auto 0; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-ui); font-weight: 500; font-size: 15px;
}
.toggle-track {
  width: 56px; height: 30px; border-radius: 999px; background: var(--gray-mid);
  position: relative; transition: background 0.3s var(--ease);
}
.toggle-track.annual { background: var(--green-solid); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 999px;
  background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease);
}
.toggle-track.annual .toggle-knob { transform: translateX(26px); }
.toggle-label { color: var(--gray); transition: color 0.25s; }
.toggle-label.on { color: var(--black); }
.toggle-save { font-size: 12px; color: var(--green-solid); font-weight: 600; }

.pricing__grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pcard {
  border: 1px solid var(--gray-mid); border-radius: 22px; padding: 34px 30px;
  display: flex; flex-direction: column; background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,0.09); }
.pcard.featured { background: var(--black); color: #fff; border-color: var(--black); }
.pcard__name { font-family: var(--font-ui); font-weight: 600; font-size: 16px; letter-spacing: -0.2px; }
.pcard__tagline { font-family: var(--font-body); font-size: 14px; color: var(--gray); margin-top: 6px; }
.pcard.featured .pcard__tagline { color: rgba(255,255,255,0.6); }
.pcard__price { font-family: var(--font-display); font-weight: 700; font-size: 54px; letter-spacing: -2.6px; margin-top: 24px; display: flex; align-items: baseline; gap: 6px; }
.pcard__price .per { font-family: var(--font-ui); font-weight: 500; font-size: 15px; letter-spacing: -0.2px; color: var(--gray); }
.pcard.featured .pcard__price .per { color: rgba(255,255,255,0.6); }
.pcard__cta { margin-top: 24px; height: 46px; border-radius: 11px; width: 100%; font-family: var(--font-ui); font-weight: 600; font-size: 15px; transition: transform 0.16s var(--ease), background 0.25s, box-shadow 0.25s; }
.pcard__cta:active { transform: scale(0.97); }
.pcard__cta.dark { background: var(--black); color: #fff; }
.pcard__cta.dark:hover { background: #222; box-shadow: 0 10px 26px rgba(0,0,0,0.2); }
.pcard__cta.green { background: var(--green-solid); color: #06250b; }
.pcard__cta.green:hover { filter: brightness(1.06); box-shadow: 0 10px 26px rgba(63,206,48,0.4); }
.pcard__cta.ghost { background: transparent; border: 1.5px solid var(--gray-mid); }
.pcard__cta.ghost:hover { border-color: var(--black); }
.pcard__feats { margin-top: 28px; display: flex; flex-direction: column; gap: 13px; }
.pcard__feats li { display: flex; gap: 11px; align-items: flex-start; font-family: var(--font-body); font-size: 14.5px; }
.pcard__feats .tick { flex-shrink: 0; width: 20px; height: 20px; border-radius: 999px; background: rgba(63,206,48,0.16); color: var(--green-solid); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.pcard.featured .pcard__feats .tick { background: rgba(90,225,76,0.2); }
.pcard__feats .tick svg { width: 12px; height: 12px; }
.pcard__badge { font-family: var(--font-ui); font-weight: 600; font-size: 11px; letter-spacing: 0.4px; text-transform: uppercase; background: var(--green-solid); color: #06250b; padding: 4px 10px; border-radius: 999px; align-self: flex-start; margin-bottom: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 26px 4px; font-family: var(--font-display); font-weight: 600; font-size: 21px;
  letter-spacing: -0.7px; color: var(--black);
}
.faq-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; border: 1.5px solid var(--gray-mid); position: relative; transition: background 0.25s, border-color 0.25s; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--black); border-radius: 2px; left: 50%; top: 50%; transition: transform 0.3s var(--ease), background 0.25s; }
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon { background: var(--black); border-color: var(--black); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a__inner { padding: 0 4px 26px; font-family: var(--font-body); font-size: 16px; color: var(--gray); line-height: 1.6; max-width: 90%; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 130px 0; }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--dark); border-radius: 32px; padding: 84px 60px; text-align: center; color: #fff;
}
.cta-card::before {
  content: ""; position: absolute; width: 600px; height: 600px; border-radius: 999px;
  background: radial-gradient(circle, rgba(90,225,76,0.35), rgba(90,225,76,0) 65%);
  top: -260px; left: 50%; transform: translateX(-50%);
}
.cta-card h2 { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 58px; letter-spacing: -2.8px; line-height: 1.02; }
.cta-card p { position: relative; font-family: var(--font-display); font-weight: 500; font-size: 19px; color: rgba(255,255,255,0.7); margin-top: 18px; }
.cta-card__actions { position: relative; margin-top: 38px; display: flex; gap: 14px; justify-content: center; }
.cta-card .btn { height: 52px; padding: 0 28px; border-radius: 13px; font-size: 16px; width: auto; }
.cta-card .btn--green { background: var(--green-solid); color: #06250b; }
.cta-card .btn--green:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(63,206,48,0.4); }
.cta-card .btn--outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.3); }
.cta-card .btn--outline:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--gray-light); border-top: 1px solid var(--gray-mid); padding: 80px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p { font-family: var(--font-body); font-size: 14.5px; color: var(--gray); line-height: 1.6; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--gray-mid); display: inline-flex; align-items: center; justify-content: center; color: var(--gray); transition: background 0.25s, color 0.25s, border-color 0.25s; }
.footer__social a:hover { background: var(--black); color: #fff; border-color: var(--black); }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h4 { font-family: var(--font-ui); font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.footer__col a { display: block; font-family: var(--font-body); font-size: 14px; color: var(--gray); padding: 6px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--black); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--gray-mid); font-family: var(--font-body); font-size: 13.5px; color: var(--gray); }
.footer__bottom .links { display: flex; gap: 24px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__scrollcue .mouse::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .hero__title { font-size: 56px; letter-spacing: -3px; }
  .hero__subtitle { width: auto; max-width: 90%; }
  .h2 { font-size: 40px; letter-spacing: -1.8px; }
  .features__grid, .pricing__grid, .stats__grid { grid-template-columns: 1fr 1fr; }
  .feature-card.span-2 { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step { padding: 0; }
  .step:not(:last-child)::after { display: none; }
  .showcase__stage { grid-template-columns: 1fr; }
  .tcols { columns: 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cta-card h2 { font-size: 42px; }
}
@media (max-width: 600px) {
  .hero__title { font-size: 42px; letter-spacing: -2px; }
  .features__grid, .pricing__grid, .stats__grid { grid-template-columns: 1fr; }
  .feature-card.span-2 { grid-column: span 1; }
  .tcols { columns: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .searchbox { min-height: 0; }
  .nav__cta .btn--ghost { display: none; }
  .h2 { font-size: 32px; }
  .cta-card { padding: 56px 26px; }
  .cta-card h2 { font-size: 32px; }
}
