/* ==========================================================================
   LeadGen - landing page styles
   Palette and type derived from the extension UI screenshots.
   ========================================================================== */

@font-face {
  font-family: "Aeonik Fono";
  src: url("assets/fonts/aeonikfono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soliden";
  src: url("assets/fonts/SolidenVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0d0b20;
  --ink-soft: #554e75;
  --ink-faint: #9b96b8;
  --line: #e7e4f4;
  --line-soft: #f2f0fa;
  --paper: #ffffff;
  --indigo: #804cd6;
  --indigo-deep: #693ab8;
  --indigo-wash: #f3eefe;
  --sheets: #0f9d58;

  --shadow-sm:
    0 1px 2px rgba(26, 16, 60, 0.05), 0 8px 20px -12px rgba(26, 16, 60, 0.14);
  --shadow-md:
    0 2px 4px rgba(26, 16, 60, 0.04), 0 24px 48px -24px rgba(26, 16, 60, 0.22);
  --shadow-lg:
    0 4px 8px rgba(26, 16, 60, 0.04), 0 40px 80px -32px rgba(26, 16, 60, 0.28);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;

  --wrap: 1120px;
  --gutter: 24px;
}

/* --------------------------------------------------------- base ---------- */

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

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family:
    "Soliden",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-soft);
  background: #f9f7fd;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}
a {
  color: var(--indigo);
  text-decoration: none;
}
a:hover {
  color: var(--indigo-deep);
}

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3 {
  font-family: "Aeonik Fono", "Soliden", sans-serif;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1.06;
  margin: 0;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.1rem);
}
h2 {
  font-size: clamp(2rem, 4.6vw, 3.15rem);
}
h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

p {
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: "Aeonik Fono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0 0 18px;
}

.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  margin-top: 20px;
  max-width: 46ch;
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}
.section--tight {
  padding-block: clamp(52px, 7vw, 80px);
}

.section-head {
  max-width: 620px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 680px;
}
.section-head--center .lede {
  max-width: 52ch;
  margin-inline: auto;
}

/* ------------------------------------------------------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Soliden", sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  color: var(--ink);
  background: #fff;
  border-color: #d4cfea;
}

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.btn--outline-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.note {
  font-size: 0.84rem;
  color: var(--ink-faint);
  margin-top: 16px;
}

section[id] {
  scroll-margin-top: 88px;
}

/* --------------------------------------------------------- header --------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 254, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.header.is-stuck {
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: "Aeonik Fono", sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}
.brand:hover {
  color: var(--ink);
}
.wordmark {
  font-family: "Soliden", sans-serif;
  font-weight: 550;
  font-variation-settings: "wdth" 180;
  font-size: 1.3rem;
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: none;
}
.mark img {
  width: 20px;
}
.mark--sm {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}
.mark--sm img {
  width: 12px;
}

.brand__by {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-left: 11px;
  margin-left: 1px;
  border-left: 1px solid var(--line);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 0.93rem;
}
.nav a:hover {
  color: var(--ink);
}
.nav .btn {
  font-size: 0.9rem;
  padding: 10px 18px;
}

@media (max-width: 800px) {
  .nav a:not(.btn) {
    display: none;
  }
  .brand__by {
    display: none;
  }
}

/* ----------------------------------------------------------- hero --------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 112px);
  background:
    radial-gradient(120% 90% at 82% 6%, #ede7fd 0%, rgba(237, 231, 253, 0) 62%),
    linear-gradient(180deg, #faf9fe 0%, #f1eefc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 320px;
  height: 260px;
  background-image: radial-gradient(circle, #d2c9ee 1px, transparent 1px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(150deg, #000 0%, transparent 72%);
  mask-image: linear-gradient(150deg, #000 0%, transparent 72%);
  opacity: 0.8;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.32fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

@media (min-width: 941px) {
  .hero__inner .browser {
    /* bleed past the wrap to the viewport edge, capped for ultrawide screens */
    margin-right: calc(
      -1 * min((100vw - min(100vw, var(--wrap))) / 2 + var(--gutter), 260px)
    );
  }
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ------------------------------------------------- browser + panel -------- */

.browser {
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #fcfbff;
  border-bottom: 1px solid var(--line-soft);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}
.dot--r {
  background: #f0655c;
}
.dot--y {
  background: #f3bf4f;
}
.dot--g {
  background: #4fc367;
}

.browser__url {
  flex: 1;
  margin-left: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: "Aeonik Fono", monospace;
  font-size: 0.74rem;
  color: var(--ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser__body {
  display: grid;
  grid-template-columns: 1fr 292px;
}

.sitepane {
  display: grid;
  border-right: 1px solid var(--line-soft);
  overflow: hidden;
}
.sitepane__view {
  grid-area: 1 / 1;
  min-width: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.sitepane__view--site {
  padding: 24px 22px 28px;
}
.sitepane__view--profile {
  background: #f4f2ee;
  padding: 12px 12px 16px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.sitepane.is-profile .sitepane__view--site {
  opacity: 0;
  transform: translateY(-8px);
}
.sitepane.is-profile .sitepane__view--profile {
  opacity: 1;
  transform: none;
}

.li-card {
  background: #fff;
  border: 1px solid #e0ddd7;
  border-radius: 9px;
  overflow: hidden;
}
.li-card--about {
  margin-top: 10px;
  padding: 13px 16px 15px;
}
.li-card__body {
  padding: 8px 16px 16px;
}
.li-banner {
  height: 58px;
  background:
    radial-gradient(70% 190% at 30% 115%, #5949d6 0%, rgba(89, 73, 214, 0) 62%),
    radial-gradient(52% 170% at 8% -30%, #d8ddf6 68%, rgba(216, 221, 246, 0) 69%),
    linear-gradient(100deg, #201a4d 0%, #2c2260 100%);
}
.li-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: -32px 0 0 16px;
  object-fit: cover;
  background: #e2e8f5;
  border: 3px solid #fff;
}
.li-name {
  margin-top: 8px;
  font-weight: 600;
  font-size: 1.02rem;
  color: rgba(0, 0, 0, 0.9);
}
.li-degree {
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
}
.li-headline {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.85);
  margin-top: 3px;
}
.li-loc {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 5px;
}
.li-link {
  color: #0a66c2;
  font-weight: 600;
}
.li-followers {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 6px;
}
.li-mutual {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 7px;
}
.li-mutual strong {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}
.li-mutual__pics {
  display: inline-flex;
  flex: none;
}
.li-mutual__pics span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: linear-gradient(150deg, #d9c7b2 0%, #a98f74 100%);
}
.li-mutual__pics span:last-child {
  margin-left: -5px;
  background: linear-gradient(150deg, #c5cfd8 0%, #8797a8 100%);
}
.li-actions {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}
.li-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 13px;
  font-size: 0.76rem;
  font-weight: 600;
}
.li-btn--solid {
  background: #0a66c2;
  color: #fff;
}
.li-btn--outline {
  color: #0a66c2;
  box-shadow: inset 0 0 0 1px #0a66c2;
}
.li-btn--grey {
  color: rgba(0, 0, 0, 0.65);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.45);
}
.li-card__title {
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.9);
}
.li-about {
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 6px;
}
.sitepane__nav {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 500;
}
.sitepane__logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #241c40;
  flex: none;
}
.sitepane__h {
  font-family: "Aeonik Fono", sans-serif;
  font-weight: 500;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 22px 0 12px;
}
.sitepane__p {
  font-size: 0.82rem;
  line-height: 1.5;
}
.sitepane__swatches {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.sitepane__swatches span {
  height: 58px;
  flex: 1;
  border-radius: 8px;
}

.sitepane__contact {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.sitepane__contact p {
  font-size: 0.78rem;
  line-height: 1.5;
}
.sitepane__contact strong {
  color: var(--ink);
  font-weight: 500;
}
.sitepane__k {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 620px) {
  .browser__body {
    grid-template-columns: 1fr;
  }
  .sitepane {
    display: none;
  }
}

/* panel ------------------------------------------------------------------- */

.panel {
  background: #fff;
}
.panel--float {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.panel__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.panel__name {
  font-family: "Aeonik Fono", sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.tag {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Aeonik Fono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  background: var(--indigo-wash);
  border-radius: 999px;
  padding: 5px 10px;
}
.tag::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--indigo);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 20 20'%3E%3Cpath d='M9.5 7l1.8 5.7 5.7 1.8-5.7 1.8-1.8 5.7-1.8-5.7L2 14.5l5.7-1.8L9.5 7zM18.5 2l1.1 2.4L22 5.5l-2.4 1.1-1.1 2.4-1.1-2.4L15 5.5l2.4-1.1L18.5 2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 20 20'%3E%3Cpath d='M9.5 7l1.8 5.7 5.7 1.8-5.7 1.8-1.8 5.7-1.8-5.7L2 14.5l5.7-1.8L9.5 7zM18.5 2l1.1 2.4L22 5.5l-2.4 1.1-1.1 2.4-1.1-2.4L15 5.5l2.4-1.1L18.5 2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.is-scanning .tag::before {
  animation: spark-pulse 1.1s ease-in-out infinite;
}
@keyframes spark-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.72);
    opacity: 0.55;
  }
}

.tag--quiet {
  background: transparent;
  color: var(--ink-faint);
  padding-right: 4px;
}
.tag--quiet::before {
  display: none;
}

.panel__scan {
  padding: 13px 14px 15px;
  border-bottom: 1px solid var(--line-soft);
}
.track {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--line);
  margin-top: 10px;
  overflow: hidden;
}
.track__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--indigo);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-scanning .track__fill {
  width: 100%;
}

.field {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.field:last-child {
  border-bottom: 0;
}

.field__label {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 3px;
}
.field__value {
  font-size: 0.92rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 1.5em;
}
.field__value span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.field--anim .field__value {
  opacity: 0;
  transform: translateY(3px);
}
.field--anim.is-filled .field__value {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}
.field--anim.is-filled {
  animation: fieldflash 0.9s ease-out;
}

@keyframes fieldflash {
  0% {
    background: rgba(128, 76, 214, 0.1);
  }
  100% {
    background: transparent;
  }
}

.panel__foot {
  padding: 12px 14px 14px;
}
.replay {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: 10px;
  font-family: "Soliden", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.replay:hover {
  background: #fbfaff;
  border-color: #d4cfea;
}
.replay svg {
  color: var(--indigo);
}

@media (prefers-reduced-motion: reduce) {
  .field--anim .field__value {
    opacity: 1;
    transform: none;
  }
  .field--anim.is-filled {
    animation: none;
  }
  .track__fill {
    transition: none;
  }
  .chart .bar,
  .chart .lastwk,
  .chart .lastwk-dot {
    transition: none;
  }
  .chart .bar {
    transform: scaleY(1);
  }
  .chart .lastwk {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
  .chart .lastwk-dot {
    opacity: 1;
  }
  .is-scanning .tag::before {
    animation: none;
  }
  .sitepane__view {
    transition: none;
  }
}

/* -------------------------------------------------------- chip row -------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo);
  flex: none;
}
.chips--center {
  justify-content: center;
}

/* ----------------------------------------------------------- split -------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}
.split--wide-right {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

@media (max-width: 900px) {
  .split,
  .split--wide-right {
    grid-template-columns: minmax(0, 1fr);
  }
  .split__visual {
    order: 2;
  }
  .split__copy {
    order: 1;
  }
}

/* review card ------------------------------------------------------------- */

.review {
  max-width: 420px;
}
.review__head {
  padding: 16px 16px 4px;
}
.review__title {
  font-family: "Aeonik Fono", sans-serif;
  font-weight: 500;
  color: var(--ink);
  font-size: 1.05rem;
}
.review__sub {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.review__body {
  padding: 12px 16px 18px;
  display: grid;
  gap: 12px;
}

.input {
  display: block;
}
.input__label {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 5px;
}
.input__box {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
}
.input--active .input__box {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(128, 76, 214, 0.12);
}
.caret {
  display: inline-block;
  width: 1px;
  height: 1em;
  background: var(--ink);
  vertical-align: -2px;
  animation: blink 1.1s steps(2) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .caret {
    animation: none;
  }
}

.save-btn {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-sm);
  padding: 12px;
  text-align: center;
  font-size: 0.93rem;
  font-weight: 500;
  margin-top: 2px;
}
.save-alt {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ---------------------------------------------------- destinations -------- */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.card__icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex: none;
}
.card__icon--sheets {
  background: var(--sheets);
  color: #fff;
}
.card__icon--wiplist {
  background: var(--ink);
}
.card__icon--wiplist img {
  width: 24px;
}
.card h3 {
  flex: 1;
}

.badge {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 9px;
}
.badge--free {
  background: #e7f6ec;
  color: #0b7c46;
}
.badge--crm {
  background: var(--indigo-wash);
  color: var(--indigo-deep);
}

.card p {
  font-size: 0.93rem;
}

.sheet {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.sheet__scroll {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
}
th,
td {
  text-align: left;
  padding: 13px 20px;
  font-size: 0.89rem;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}
th {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: #fbfaff;
  font-weight: 500;
}
td {
  color: var(--ink);
}
td.muted {
  color: var(--ink-soft);
}
tr:last-child td {
  border-bottom: 0;
}

/* ------------------------------------------------------- dashboard -------- */

.dash {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.dash__greet {
  font-family: "Aeonik Fono", sans-serif;
  font-weight: 500;
  color: var(--ink);
  font-size: 1.06rem;
  padding: 2px 2px 4px;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
}
.stat__k {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.stat__v {
  font-family: "Aeonik Fono", sans-serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.stat__d {
  font-size: 0.74rem;
  color: var(--ink-faint);
}
.stat__d--up {
  color: var(--indigo);
}

.target {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
}
.target__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.target__row span:last-child {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.target .track {
  margin-top: 9px;
  height: 7px;
  background: #ede9f8;
}
.target .track__fill {
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.is-visible .target .track__fill {
  width: 47%;
}

.chartbox {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 15px 8px;
}
.chart {
  width: 100%;
  height: auto;
}
.chart .bar {
  fill: #804cd6;
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-visible .chart .bar:nth-of-type(1) {
  transition-delay: 0.2s;
}
.is-visible .chart .bar:nth-of-type(2) {
  transition-delay: 0.34s;
}
.is-visible .chart .bar:nth-of-type(3) {
  transition-delay: 0.48s;
}
.is-visible .chart .bar {
  transform: scaleY(1);
}
.chart .grid {
  stroke: var(--line-soft);
}
.chart .lastwk {
  fill: none;
  stroke: #251d40;
  stroke-width: 1.6;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.1s ease 0.55s;
}
.is-visible .chart .lastwk {
  stroke-dashoffset: 0;
}
.chart .lastwk-dot {
  fill: #251d40;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.is-visible .chart .lastwk-dot {
  opacity: 1;
}
.is-visible .chart .lastwk-dot:nth-of-type(1) {
  transition-delay: 0.6s;
}
.is-visible .chart .lastwk-dot:nth-of-type(2) {
  transition-delay: 0.75s;
}
.is-visible .chart .lastwk-dot:nth-of-type(3) {
  transition-delay: 0.9s;
}
.is-visible .chart .lastwk-dot:nth-of-type(4) {
  transition-delay: 1.05s;
}
.is-visible .chart .lastwk-dot:nth-of-type(5) {
  transition-delay: 1.2s;
}
.is-visible .chart .lastwk-dot:nth-of-type(6) {
  transition-delay: 1.35s;
}
.is-visible .chart .lastwk-dot:nth-of-type(7) {
  transition-delay: 1.5s;
}
.chart text {
  font-family: "Aeonik Fono", monospace;
  font-size: 9px;
  fill: var(--ink-faint);
  letter-spacing: 0.08em;
}

.lead-row {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lead-row strong {
  color: var(--ink);
  font-family: "Aeonik Fono", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
}
.lead-row span {
  font-size: 0.8rem;
}
.check {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--indigo);
  display: grid;
  place-items: center;
  flex: none;
}

/* ----------------------------------------------------------- steps -------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -1px;
  left: 0;
  padding-top: 14px;
  padding-right: 30px;
  border-top: 2px solid var(--indigo);
  font-family: "Aeonik Fono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--indigo);
}
.step h3 {
  margin-bottom: 8px;
}
.step p {
  font-size: 0.95rem;
}

/* ----------------------------------------------------------- video -------- */

.video-frame {
  margin-top: 44px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #0d0b20;
}
.video-frame video {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------- faq -------- */

.faq {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: "Aeonik Fono", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--indigo);
  line-height: 1;
}
.faq details[open] summary::after {
  content: "\2013";
}
.faq p {
  padding: 0 0 22px;
  font-size: 0.97rem;
  max-width: 70ch;
}

/* ------------------------------------------------------------- cta -------- */

.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: clamp(72px, 10vw, 116px) 0;
  background: #150c2e;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.cta__inner {
  position: relative;
}
.cta h2 {
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
}
.cta .eyebrow {
  color: #c9b6ff;
}
.cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin: 20px auto 0;
}
.cta .btn-row {
  justify-content: center;
}
.cta .note {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------------- footer -------- */

.footer {
  background: #faf9fe;
  border-top: 1px solid var(--line);
  padding: 44px 0 56px;
  font-size: 0.89rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
}
.footer__links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__links a {
  color: var(--ink-soft);
}
.footer__links a:hover {
  color: var(--ink);
}
.footer__legal {
  width: 100%;
  color: var(--ink-faint);
  font-size: 0.82rem;
}

/* --------------------------------------------------------- reveal --------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------- article --------- */

.prose {
  max-width: 68ch;
  padding-block: clamp(48px, 7vw, 88px);
}
.prose h1 {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  margin-bottom: 10px;
}
.prose h2 {
  font-size: 1.35rem;
  margin: 40px 0 12px;
  letter-spacing: -0.015em;
}
.prose p,
.prose li {
  font-size: 1rem;
}
.prose ul {
  padding-left: 20px;
}
.prose li {
  margin-bottom: 8px;
}
.prose .updated {
  font-family: "Aeonik Fono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
