/* ============================================================
   Veryly — recreated from the Framer design
   Fonts:  Work Sans (headings) / Inter (body)
   ============================================================ */

:root {
  /* Color styles (from Framer "Color" styles) */
  --main: #CF02C8;            /* Main_Blue  */
  --main-dark: #A502A0;
  --alice: #FEE7FD;           /* Alice Blue — badge pink */
  --main-gray: #F4F1F4;
  --light-gray: #F6F6F6;
  --white: #FFFFFF;
  --title: #1A091A;
  --paragraph: #696969;
  --black: #170D17;
  --danger: #E03131;

  /* Accent blues used in the dashboard cards */
  --blue: #4D7CF3;
  --blue-deep: #3644D9;
  --blue-sky: #4E9FF5;
  --blue-light: #7BD3F7;

  /* Type */
  --font-head: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-card: 16px;
  --radius-lg: 24px;
  --container: 1216px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--paragraph);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--title);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: clamp(38px, 5vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 32px); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  background: var(--alice);
  color: var(--main);
  border: 1px solid rgba(207, 2, 200, .45);
}
.badge--dark {
  background: rgba(207, 2, 200, .12);
  color: #fff;
  border-color: rgba(207, 2, 200, .65);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  transition: transform .25s var(--ease-out), background-color .25s, color .25s, box-shadow .25s;
  will-change: transform;
}
.btn svg { transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn--primary { background: var(--main); color: #fff; }
.btn--primary:hover { background: var(--main-dark); transform: translateY(-2px); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #2c1a2c; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--title); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 20px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--main);
  display: grid; place-items: center;
  flex: none;
}
.logo-full { height: 38px; width: auto; display: block; }
.logo-mark-img { width: 36px; height: 36px; flex: none; }
.footer__brand .logo-full { height: 34px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: .92;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: .65; }
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px); left: -16px;
  min-width: 190px;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(23, 13, 23, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--title);
  font-size: 15px;
  opacity: 1;
}
.nav__dropdown-menu a:hover { background: var(--alice); color: var(--main); opacity: 1; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 0; border-radius: 10px;
  background: rgba(255,255,255,.12);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav__burger span {
  width: 20px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dark-on-light nav variant (pages with white backgrounds, e.g. 404) */
body.nav-on-light .nav:not(.nav--fixed) .nav__brand span,
body.nav-on-light .nav:not(.nav--fixed) .nav__links > a,
body.nav-on-light .nav:not(.nav--fixed) .nav__dropdown > a { color: var(--title); }
body.nav-on-light .nav:not(.nav--fixed) .nav__burger { background: var(--main-gray); }
body.nav-on-light .nav:not(.nav--fixed) .nav__burger span { background: var(--title); }

/* Fixed nav that appears on scroll (Framer scroll-trigger) */
.nav--fixed {
  position: fixed;
  padding: 12px 0;
  background: rgba(23, 13, 23, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform .45s var(--ease-out), visibility .45s;
}
.nav--fixed.is-visible { transform: translateY(0); visibility: visible; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(23, 13, 23, .97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-out), visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 8px 0;
}
.mobile-menu a:hover { color: var(--main); }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 0; border-radius: 10px;
  color: #fff; font-size: 22px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 1000px;
  padding: 180px 0 0;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(120% 110% at 100% 100%, #f2b0f0 0%, #dc5cdc 18%, #8c1d90 40%, #3d0f42 66%, #150513 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}
.hero h1 { color: #fff; margin: 26px 0 0; }
.hero p {
  max-width: 470px;
  margin: 22px 0 34px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
}

/* Dashboard visual */
.hero__visual { position: relative; height: 560px; }
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(16, 3, 16, .35);
  color: var(--title);
}
.hero-card__title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--title);
}

.hero-card--time {
  top: 0; left: 8%;
  width: 285px;
  padding: 22px 24px 16px;
  text-align: center;
  z-index: 2;
  animation: floatY 7s ease-in-out infinite;
}
.hero-card--time .hero-card__title { font-size: 22px; }
.hero-card--time small { display: block; color: var(--paragraph); font-size: 12.5px; margin-top: 2px; }

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 110px;
  margin-top: 18px;
}
.bar-chart .bar {
  width: 17px;
  border-radius: 5px 5px 2px 2px;
  background: var(--blue);
  transform-origin: bottom;
  animation: barGrow 1s var(--ease-out) both;
}
.bar-chart .bar:nth-child(odd) { background: #7FA5F5; }
.bar-chart figure { display: flex; flex-direction: column; align-items: center; gap: 7px; margin: 0; }
.bar-chart figcaption { font-size: 10.5px; color: var(--paragraph); }

.hero-card--steps {
  top: 200px; left: 0;
  width: 300px;
  padding: 20px;
  z-index: 3;
  animation: floatY 8s 1s ease-in-out infinite;
}
.hero-card--steps header {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
}
.hero-card--steps header span:last-child { font-size: 12.5px; }
.hero-card--steps .axis {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--paragraph);
  margin-top: 6px;
}
.hero-card--steps footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #efefef;
  margin-top: 14px; padding-top: 12px;
}
.hero-card--steps footer b { font-family: var(--font-head); font-size: 13px; display: block; }
.hero-card--steps footer small { font-size: 10.5px; color: var(--paragraph); }

.toggle-pill {
  width: 40px; height: 22px; border-radius: 100px;
  background: var(--blue);
  position: relative; flex: none;
}
.toggle-pill::after {
  content: "";
  position: absolute; top: 3px; right: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff;
}

.hero-card--visitors {
  top: 120px; right: 0;
  width: 330px;
  padding: 28px 26px 22px;
  z-index: 1;
  animation: floatY 9s .5s ease-in-out infinite;
}
.donut { position: relative; width: 216px; height: 216px; margin: 8px auto 18px; }
.donut svg { transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 16; stroke-linecap: round; }
.donut__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.donut__center b { font-family: var(--font-head); font-size: 30px; color: var(--title); }
.donut__center small { color: var(--paragraph); font-size: 13px; }
.hero-card--visitors footer { display: flex; gap: 12px; align-items: center; }
.hero-card--visitors footer .dot-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #E9EDFB; display: grid; place-items: center; flex: none;
}
.hero-card--visitors footer b { font-family: var(--font-head); font-size: 15px; display: block; color: var(--title); }
.hero-card--visitors footer small { font-size: 12.5px; color: var(--paragraph); }

/* Trusted logos */
.hero__trusted {
  margin-top: 130px;
  padding-bottom: 64px;
  text-align: center;
}
.hero__trusted p {
  max-width: none;
  margin: 0 0 30px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  opacity: .92;
}
.logo-row .brand {
  font-family: var(--font-head);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand--tecno { font-family: "Arial Black", sans-serif; letter-spacing: .18em; font-size: 21px; }
.brand--ucard { letter-spacing: .1em; font-size: 19px; font-weight: 800; }
.brand--ucard sup { font-size: 9px; }
.brand--kuda { font-weight: 800; font-size: 25px; letter-spacing: -.02em; }
.brand--mtn {
  font-size: 13px; font-weight: 700; letter-spacing: .05em;
  border: 1.6px solid #fff; border-radius: 100px;
  padding: 4px 14px;
}
.brand--acumen { font-family: Georgia, serif; font-weight: 500; font-size: 23px; }
.brand--softcom { font-weight: 600; font-size: 23px; letter-spacing: -.01em; }
.brand--softcom i { font-style: normal; color: var(--main); }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 110px 0; }
.section__head {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head h2 { margin: 22px 0 0; }
.section__head .sub {
  margin: 20px auto 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
}

/* ============================================================
   CORE FEATURES — 3 cards
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  border-radius: var(--radius-card);
  padding: 34px 30px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(23, 13, 23, .12); }
.feature-card h3 {
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 28px;
}
.feature-card--dark { background: var(--black); }
.feature-card--dark h3 { color: #fff; }
.feature-card--gray { background: var(--light-gray); }
.feature-card--pink { background: var(--main); }
.feature-card--pink h3 { color: #fff; }

/* card 1: tag diagram */
.tag-diagram { position: relative; flex: 1; min-height: 230px; }
.tag-diagram .tag {
  position: absolute;
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: #10240f;
  white-space: nowrap;
  animation: floatY 6s ease-in-out infinite;
}
.tag-diagram::before {
  content: "";
  position: absolute; inset: 12% 18% 20% 18%;
  border: 1.4px dashed rgba(255,255,255,.28);
  border-radius: 14px;
}
.tag-diagram .arrow-up {
  position: absolute; left: 50%; top: 6%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: 20px;
}
.tag--tech { background: #2F6BFF; color: #fff; left: 0; top: 34%; animation-delay: .2s; }
.tag--hr { background: #35C06B; color: #fff; left: 30%; top: 18%; animation-delay: .6s; }
.tag--biz { background: #E5484D; color: #fff; right: 0; top: 38%; animation-delay: .1s; }
.tag--health { background: #fff; color: var(--title); left: 22%; top: 56%; animation-delay: .8s; }
.tag--lms { background: #F5B72F; color: #241a02; left: 38%; top: 78%; animation-delay: .4s; }

/* card 2: avatars */
.avatar-row {
  display: flex;
  justify-content: center;
  margin: auto 0 26px;
}
.avatar-row img {
  width: 66px; height: 66px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-inline: -7px;
  box-shadow: 0 8px 18px rgba(23,13,23,.14);
  transition: transform .3s var(--ease-out);
}
.avatar-row img:hover { transform: translateY(-6px) scale(1.06); }
.feature-card--gray figcaption {
  text-align: center;
  color: var(--paragraph);
  font-size: 15.5px;
  margin-bottom: 8px;
}

/* card 3: rating */
.rating-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.rating-pills { position: relative; width: 100%; height: 90px; }
.rating-pills .pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--title);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(23,13,23,.18);
  animation: floatY 6s ease-in-out infinite;
}
.rating-pills .pill--linked { left: 6%; top: 42%; background: var(--black); color: #fff; animation-delay: .5s; }
.rating-pills .pill--trust { right: 6%; top: 8%; }
.rating-score { text-align: center; color: #fff; }
.rating-score b { font-family: var(--font-head); font-size: 56px; font-weight: 600; display: block; line-height: 1; }
.rating-score span { font-size: 15px; opacity: .9; }

/* ============================================================
   VERA AI
   ============================================================ */
.vera { padding: 110px 0; }
.vera__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.vera__copy .badge { margin-bottom: 24px; }
.vera__copy h2 { max-width: 520px; }
.vera__copy > p { margin: 22px 0 40px; max-width: 520px; }
.vera__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.vera-point .vera-point__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #EAF1FE;
  color: var(--blue);
  margin-bottom: 18px;
}
.vera-point h4 { font-size: 22px; margin-bottom: 10px; }
.vera-point p { margin: 0; font-size: 16px; }

.vera__visual { position: relative; }
.vera__visual > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 16px;
}
.watchlist {
  position: absolute;
  left: -60px; bottom: 60px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(23, 13, 23, .25);
  animation: floatY 8s ease-in-out infinite;
}
.watchlist header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.watchlist header b { font-family: var(--font-head); font-size: 21px; color: var(--title); display: block; }
.watchlist header small { color: var(--paragraph); font-size: 13px; }
.watchlist header .price {
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 5px;
}
.watchlist li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}
.watchlist li + li { border-top: 1px solid #f1f1f1; }
.watchlist li b { font-family: var(--font-head); font-size: 15.5px; color: var(--title); display: block; }
.watchlist li small { font-size: 12.5px; color: var(--paragraph); }
.watchlist .val { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--title); }
.watchlist .val.up::after { content: " ↑"; color: #35A768; }
.watchlist .val.down::after { content: " ↓"; color: #E5484D; }

/* ============================================================
   INSIGHTS  (light blue band)
   ============================================================ */
.insights { background: #EAF3FB; }
.insights__wrap {
  display: grid;
  gap: 24px;
}
.insights__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.insight-card {
  border-radius: var(--radius-card);
  padding: 36px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.insight-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(23,13,23,.14); }
.insight-card--pink { background: var(--main); color: #fff; }
.insight-card--dark { background: var(--black); color: #fff; }
.insight-card h3 { color: #fff; font-size: 27px; margin-bottom: 16px; }
.insight-card > p { font-size: 15px; line-height: 1.7; opacity: .88; margin: 0 0 26px; }

.inner-panel {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  color: var(--title);
}
.inner-panel h4 {
  font-size: 17px;
  text-align: center;
  margin-bottom: 16px;
}

/* invoice donut */
.invoice-stats { display: grid; place-items: center; }
.invoice-donut { position: relative; width: 170px; height: 170px; }
.invoice-donut svg { transform: rotate(-90deg); }
.invoice-donut circle { fill: none; stroke-width: 20; }
.invoice-donut .donut__center b { font-size: 24px; }
.invoice-legend {
  display: flex; justify-content: space-between; gap: 10px;
  width: 100%;
  margin-top: 18px;
}
.invoice-legend div { text-align: center; font-size: 11.5px; color: var(--paragraph); }
.invoice-legend b { display: block; font-family: var(--font-head); color: var(--title); font-size: 14px; }
.invoice-legend i {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  margin-right: 5px; font-style: normal;
}

/* line chart panel */
.stats-legend {
  display: flex; gap: 18px; justify-content: center;
  font-size: 12.5px; color: var(--paragraph);
  margin-top: 12px;
}
.stats-legend i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; font-style: normal; }

/* explore row */
.explore-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.explore-card h3 { font-size: 30px; margin-bottom: 16px; }
.explore-card p { font-size: 15.5px; margin: 0 0 24px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--title);
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--main);
  color: #fff;
  display: grid; place-items: center;
  flex: none;
}
.check svg { width: 11px; }
.revenue-panel {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(23,13,23,.08);
}
.revenue-panel h4 { font-size: 16px; text-align: center; }
.revenue-panel small { display: block; text-align: center; color: var(--paragraph); font-size: 12px; margin-bottom: 10px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  color: #fff;
  background:
    radial-gradient(110% 130% at 85% 100%, #e9a0ec 0%, #b93cbe 22%, #641667 48%, #230a25 78%, #150513 100%);
}
.pricing .section__head h2,
.pricing .section__head .sub { color: #fff; }
.pricing .section__head .sub { opacity: .85; }

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 56px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
}
.switch {
  width: 58px; height: 30px;
  border: 0;
  border-radius: 100px;
  background: var(--main);
  position: relative;
}
.switch::after {
  content: "";
  position: absolute;
  top: 4px; left: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform .3s var(--ease-out);
}
.switch[aria-checked="true"]::after { transform: translateX(28px); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 34px 30px;
  color: var(--title);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(12, 2, 12, .35); }
.price-card--featured { background: var(--main); color: #fff; }
.price-card h3 { font-size: 20px; }
.price-card--featured h3 { color: #fff; }
.price-card .price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  margin: 14px 0 4px;
  line-height: 1;
}
.price-card .price small {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--paragraph);
}
.price-card--featured .price small { color: rgba(255,255,255,.8); }
.price-card .for {
  font-size: 15.5px;
  color: var(--paragraph);
  border-top: 1px solid #efeaef;
  margin-top: 22px;
  padding-top: 22px;
}
.price-card--featured .for { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.25); }
.price-card ul { margin: 16px 0 30px; flex: 1; }
.price-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 0;
  font-size: 15.5px;
  font-family: var(--font-head);
  font-weight: 500;
}
.price-card li svg { flex: none; }
.price-card .btn { justify-content: center; width: 100%; }

/* ============================================================
   COLLABORATION
   ============================================================ */
.collab__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.collab__visual { position: relative; }
.collab__visual > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
}
.score-card {
  position: absolute;
  right: -44px; bottom: 44px;
  width: 250px;
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(23,13,23,.25);
  animation: floatY 8s ease-in-out infinite;
}
.score-card b { font-family: var(--font-head); font-size: 26px; color: var(--title); }
.score-card small { display: block; color: var(--paragraph); font-size: 13px; line-height: 1.5; margin-top: 6px; }
.gauge { position: relative; width: 150px; height: 84px; margin: 16px auto 4px; overflow: hidden; }
.gauge svg { display: block; }
.gauge__num {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 30px;
  color: var(--title);
}
.collab__copy h2 { max-width: 480px; }
.collab__copy > p { margin: 22px 0 26px; max-width: 540px; font-size: 16.5px; }
.collab__copy .check-list { margin-bottom: 36px; }
.collab__copy .check-list li { font-size: 17px; padding: 8px 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-items: start;
}
.faq__col { display: grid; gap: 18px; }
.faq-item {
  background: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--title);
}
.faq-item .chev {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.6px solid var(--title);
  display: grid; place-items: center;
  transition: transform .35s var(--ease-out), background-color .3s, color .3s, border-color .3s;
}
.faq-item.is-open .chev {
  transform: rotate(90deg);
  background: var(--main);
  border-color: var(--main);
  color: #fff;
}
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out);
}
.faq-item__body p {
  margin: 0;
  padding: 0 24px 24px 66px;
  font-size: 16px;
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial { background: var(--black); }
.testimonial__card {
  background: #221226;
  background: linear-gradient(145deg, #241028 0%, #1b0d1e 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  color: #fff;
}
.testimonial__who {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}
.testimonial__who img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__who b { font-family: var(--font-head); font-size: 24px; display: block; }
.testimonial__who small { font-size: 15px; opacity: .75; }
.testimonial__quote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 34px;
}
.stars { display: flex; gap: 7px; margin-bottom: 20px; }
.stars i {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: var(--main);
  display: grid; place-items: center;
  color: #fff;
}
.testimonial__source { font-family: var(--font-head); font-weight: 600; font-size: 20px; }
.testimonial__card > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid #ececec;
  border-radius: var(--radius-card);
  padding: 22px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 26px 54px rgba(23,13,23,.12);
}
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}
.blog-card .badge { margin-bottom: 18px; }
.blog-card h3 { font-size: 24px; line-height: 1.35; }

/* ============================================================
   CTA
   ============================================================ */
.cta__card {
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(120% 160% at 95% 90%, #eeb1f1 0%, #c04ec4 22%, #5f1663 52%, #1c081e 85%);
  overflow: hidden;
}
.cta__card h2 { color: #fff; margin: 24px 0 0; max-width: 480px; }
.cta__card p { margin: 20px 0 34px; max-width: 430px; font-size: 15.5px; color: rgba(255,255,255,.82); }
.cta__visual { position: relative; min-height: 380px; }
.cta__visual .hero-card--visitors { top: 0; right: 0; animation-delay: 0s; }
.cta__visual .hero-card--time {
  top: auto; bottom: 0; left: 0;
  z-index: 4;
  animation-delay: 1.2s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: #fff;
  padding: 90px 0 0;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 70px;
}
.footer h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 26px;
}
.newsletter {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  max-width: 340px;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--title);
  background: none;
}
.newsletter button {
  border: 0;
  border-radius: 8px;
  background: var(--main);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 18px;
  transition: background-color .25s;
}
.newsletter button:hover { background: var(--main-dark); }
.footer li { padding: 7px 0; }
.footer li a, .footer address {
  font-style: normal;
  font-size: 15.5px;
  color: rgba(255,255,255,.72);
  transition: color .2s;
  line-height: 1.7;
}
.footer li a:hover { color: var(--main); }

.to-top {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--main);
  color: #fff;
  display: grid; place-items: center;
  transition: transform .3s var(--ease-out), background-color .25s;
  z-index: 1;
}
.to-top:hover { transform: translate(-50%, calc(-50% - 4px)); background: var(--main-dark); }

.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 26px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand span { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: #fff; }
.footer__bottom p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,.72); }
.footer__bottom p a { color: var(--main); }

/* ============================================================
   INTERIOR PAGE HERO (about/features/… stubs)
   ============================================================ */
.page-hero {
  color: #fff;
  padding: 200px 0 120px;
  text-align: center;
  background:
    radial-gradient(120% 110% at 100% 100%, #f2b0f0 0%, #dc5cdc 18%, #8c1d90 40%, #3d0f42 66%, #150513 100%);
}
.page-hero h1 { color: #fff; margin: 24px 0 0; }
.page-hero p {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.82);
  font-size: 16.5px;
}

/* 404 */
.notfound { text-align: center; padding: 220px 0 140px; }
.notfound .code {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(120px, 20vw, 220px);
  line-height: 1;
  color: var(--main);
  letter-spacing: -0.04em;
}

/* Contact / forms */
.contact-form {
  max-width: 640px;
  margin: 64px auto 0;
  display: grid;
  gap: 18px;
  text-align: left;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.4px solid #e7e0e7;
  border-radius: 10px;
  background: #fff;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--title);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 4px rgba(207, 2, 200, .12);
}
.contact-form textarea { min-height: 150px; resize: vertical; }

/* Changelog / terms list pages */
.prose-page { max-width: 760px; margin: 0 auto; padding: 90px 24px 40px; }
.prose-page h3 { margin: 44px 0 12px; }
.prose-page p { font-size: 16.5px; }
.log-item {
  border-left: 3px solid var(--main);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
}
.log-item .date {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--main);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.log-item h3 { margin: 8px 0 8px; font-size: 24px; }
.log-item p { margin: 0; font-size: 16px; }

/* ============================================================
   REVEAL ANIMATIONS  (Framer-style appear effects)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 640px; margin-inline: auto; width: 100%; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--pink { grid-column: span 2; }
  .vera__grid, .collab__grid { grid-template-columns: 1fr; gap: 56px; }
  .watchlist { left: 16px; }
  .score-card { right: 16px; }
  .testimonial__card { grid-template-columns: 1fr; padding: 44px; }
  .blog__grid { grid-template-columns: 1fr; }
  .cta__card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 809px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .hero { padding-top: 140px; min-height: 0; }
  .hero__visual { height: auto; min-height: 620px; }
  .hero-card--steps { top: 240px; }
  .hero-card--visitors { top: 300px; right: auto; left: 4%; }
  .hero__trusted { margin-top: 72px; }
  .logo-row { justify-content: center; gap: 24px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--pink { grid-column: auto; }
  .insights__row { grid-template-columns: 1fr; }
  .explore-card { grid-template-columns: 1fr; padding: 30px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .vera__points { grid-template-columns: 1fr; }
  .vera__visual > img { height: 480px; }
  .watchlist { width: 290px; bottom: 24px; }
  .faq__grid { grid-template-columns: 1fr; }
  .collab__visual > img { height: 440px; }
  .score-card { bottom: 20px; }
  .testimonial__card { padding: 32px; }
  .testimonial__quote { font-size: 20px; }
  .testimonial__card > img { height: 320px; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card img { height: 200px; }
  .cta__card { padding: 36px 28px; }
  .cta__visual { min-height: 0; height: 460px; }
  .cta__visual .hero-card--visitors { right: auto; left: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form .row { grid-template-columns: 1fr; }
}
