/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  --c-black: #000;
  --c-ink: #0A0A0A;
  --c-text: #3D3D3D;
  --c-text-light: #6D6D6D;
  --c-text-muted: #9DA3B4;
  --c-border: #EAEAEA;
  --c-border-soft: rgba(234,234,234,0.6);
  --c-white: #fff;
  --c-bg-soft: #F5F6F8;

  --c-primary: #0454FF;
  --c-primary-hover: #0346D8;
  --c-primary-light: #86B9FF;
  --c-primary-bg: #EBF1FF;

  --c-red: #FF5B5F;
  --c-red-bg: #FFF2F2;
  --c-purple: #7E5BFF;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08), 0 32px 80px rgba(0,0,0,0.1);

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

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--c-text-light);
  background: var(--c-white);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: 820px; }
.section { padding: 120px 0; position: relative; }
.section--muted { background: var(--c-bg-soft); }
.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 12px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.section__title {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--c-black);
  margin-bottom: 18px;
}
.section__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text-light);
  max-width: 560px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--outline { background: var(--c-white); color: var(--c-black); border: 1px solid var(--c-border); }
.btn--outline:hover { border-color: var(--c-black); transform: translateY(-1px); }
.btn span { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover span { transform: translateX(3px); }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}
.nav--scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--c-border-soft);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--c-white);
  transition: color 0.3s;
}
.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--c-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(4,84,255,0.3);
}
.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.nav--scrolled .nav__logo { color: var(--c-black); }
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: var(--c-white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav--scrolled .nav__links a { color: var(--c-text-light); }
.nav--scrolled .nav__links a:hover { color: var(--c-black); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--c-white);
  color: var(--c-black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}
.nav__cta:hover { background: var(--c-primary); color: var(--c-white); transform: translateY(-1px); }
.nav--scrolled .nav__cta { background: var(--c-black); color: var(--c-white); }
.nav--scrolled .nav__cta:hover { background: var(--c-primary); }
.nav__cta span { transition: transform 0.25s var(--ease); }
.nav__cta:hover span { transform: translateX(3px); }

/* =====================================================
   HERO — blue radial gradient bg, white text, pill CTA
   ===================================================== */
.hero {
  position: relative;
  padding: 160px 24px 120px;
  min-height: 100vh;
  background: #0454FF;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeUp 0.7s var(--ease);
}
.hero__eyebrow-icon {
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__title {
  font-size: clamp(44px, 5.8vw, 84px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--c-white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.hero__title--caps {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero__form {
  max-width: 460px;
  margin: 0 auto 32px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero__form-wrap {
  display: flex;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero__form-wrap:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.08);
}
.hero__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 20px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-black);
  outline: none;
}
.hero__input::placeholder { color: var(--c-text-muted); }
.hero__submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.hero__submit:hover { background: var(--c-primary); }
.hero__submit:active { transform: scale(0.97); }
.hero__submit span { transition: transform 0.2s; }
.hero__submit:hover span { transform: translateX(3px); }
.hero__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}
.hero__avatars { display: flex; align-items: center; }
.hero__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #D8E6FF;
  margin-left: -8px;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__dashboard {
  position: relative;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 24px;
  animation: fadeUp 1s var(--ease) 0.5s both;
}
.hero__dashboard img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   LOGO MARQUEE
   ===================================================== */
.logos {
  padding: 80px 0;
  background: var(--c-white);
  overflow: hidden;
}
.logos__label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.logos__track-wrapper {
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  overflow: hidden;
}
.logos__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scroll-logos 35s linear infinite;
}
.logos__track:hover { animation-play-state: paused; }
.logos__logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  user-select: none;
}
.logos__logo:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   FEATURES — cards with varied backgrounds + inner white panel
   ===================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature {
  position: relative;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Card 1: blue gradient */
.feature--blue {
  background: linear-gradient(145deg, rgb(12, 108, 255) 0%, rgb(83, 172, 254) 37%, rgb(193, 222, 255) 58%);
  border-color: rgba(4,84,255,0.15);
}
/* Card 2 & 4: soft gray */
.feature--gray { background: #F5F6F8; }
/* Card 3: silver sheen */
.feature--silver {
  background: linear-gradient(131deg, #F5F6F8 0%, #DADDE3 3%, #F5F6F8 46%, #FFFFFF 55%, #F5F6F8 100%);
}

.feature__inner {
  background: var(--c-white);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.feature--silver .feature__inner { background: transparent; box-shadow: none; }

.feature__illo {
  width: 100%;
  aspect-ratio: 16/9.5;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature--silver .feature__illo { background: transparent; }

.feature__body { padding: 28px 32px 32px; }
.feature__pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-primary);
  background: var(--c-primary-bg);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.feature__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.feature__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text-light);
}

/* ----- ILLUSTRATION 1: analytics chart ----- */
.illo-chart {
  width: 100%;
  background: var(--c-white);
  border: 1px solid #F0F1F5;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(12,108,255,0.18);
}
.illo-chart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.illo-chart__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.illo-chart__badge {
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 9px;
  border-radius: 100px;
}
.illo-chart__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--c-black);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.illo-chart__graph {
  width: 100%;
  height: 68px;
  display: block;
}
.illo-chart__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}

/* ----- ILLUSTRATION 2: contacts list ----- */
.illo-contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.illo-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-white);
  border: 1px solid #F0F1F5;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.illo-contact__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.illo-contact__body { flex: 1; min-width: 0; }
.illo-contact__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.illo-contact__meta {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.illo-contact__pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.illo-contact__pill--active { background: #ECFDF5; color: #059669; }
.illo-contact__pill--review { background: #FEF3C7; color: #D97706; }
.illo-contact__pill--pending { background: #F0F1F5; color: var(--c-text-light); }

/* ----- ILLUSTRATION 3: AI data — pulsing rings + nodes ----- */
.illo-data {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.illo-data__pulse {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illo-data__center {
  position: relative;
  z-index: 3;
  width: 60px;
  height: 60px;
  background: var(--c-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(4,84,255,0.25), 0 1px 2px rgba(0,0,0,0.04);
}
.illo-data__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(4,84,255,0.3);
  transform: translate(-50%,-50%);
  animation: pulse-ring 3s var(--ease) infinite;
}
.illo-data__ring--1 { width: 100px; height: 100px; animation-delay: 0s; }
.illo-data__ring--2 { width: 100px; height: 100px; animation-delay: 1s; }
.illo-data__ring--3 { width: 100px; height: 100px; animation-delay: 2s; }
@keyframes pulse-ring {
  0% { width: 70px; height: 70px; opacity: 0.8; }
  100% { width: 240px; height: 240px; opacity: 0; }
}
.illo-data__nodes {
  position: absolute;
  inset: 0;
}
.illo-data__node {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--c-white);
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(4,84,255,0.3);
  animation: node-float 4s var(--ease) infinite;
}
.illo-data__node:nth-child(odd) { animation-delay: 0.8s; }
.illo-data__node:nth-child(3n) { animation-delay: 1.6s; }
@keyframes node-float {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-4px); opacity: 0.6; }
}
.illo-data__label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--c-white);
  border: 1px solid #EAEAEA;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.illo-data__label-dot {
  width: 6px; height: 6px;
  background: #059669;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* ----- ILLUSTRATION 4: task list ----- */
.illo-tasks {
  width: 100%;
  background: var(--c-white);
  border: 1px solid #F0F1F5;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.illo-tasks__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid #F0F1F5;
}
.illo-tasks__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.01em;
}
.illo-tasks__date {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 500;
}
.illo-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.illo-task--active {
  background: var(--c-primary-bg);
  margin: 0 -10px;
  padding: 7px 10px;
  border-radius: 8px;
}
.illo-task__check {
  width: 14px; height: 14px;
  border-radius: 5px;
  border: 1.5px solid #D0D5DD;
  flex-shrink: 0;
  position: relative;
  background: var(--c-white);
}
.illo-task__check--done {
  border-color: var(--c-primary);
  background: var(--c-primary);
}
.illo-task__check--done::after {
  content: '';
  position: absolute;
  left: 3px; top: 1.5px;
  width: 4px; height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.illo-task__check--active {
  border-color: var(--c-primary);
  background: var(--c-white);
}
.illo-task__check--active::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: pulse-dot 1.8s infinite;
}
.illo-task__label {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-black);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.illo-task__label--done {
  color: var(--c-text-muted);
  text-decoration: line-through;
}
.illo-task__time {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-light);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing__toggle {
  display: inline-flex;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  padding: 5px;
  margin-top: 28px;
}
.pricing__toggle-btn {
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-light);
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}
.pricing__toggle-btn--active {
  background: var(--c-black);
  color: var(--c-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.plan {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: all 0.3s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.plan--featured {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.35;
  user-select: none;
  pointer-events: none;
  mix-blend-mode: screen;
}
.plan__badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--c-primary);
  color: var(--c-white);
  letter-spacing: -0.01em;
  z-index: 1;
}
.plan__head { margin-bottom: 24px; }
.plan__name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: inherit;
}
.plan--featured .plan__name { color: var(--c-white); }
.plan__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-light);
}
.plan--featured .plan__desc { color: rgba(255,255,255,0.72); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.plan--featured .plan__price { border-color: rgba(255,255,255,0.15); }
.plan__currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.02em;
}
.plan--featured .plan__currency { color: var(--c-white); }
.plan__amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--c-black);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.2s;
}
.plan--featured .plan__amount { color: var(--c-white); }
.plan__period {
  font-size: 15px;
  color: var(--c-text-light);
  font-weight: 500;
  margin-left: 4px;
}
.plan--featured .plan__period { color: rgba(255,255,255,0.72); }
.plan__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
}
.plan__cta span { transition: transform 0.25s var(--ease); }
.plan__cta:hover span { transform: translateX(3px); }
.plan__cta--secondary { background: var(--c-bg-soft); color: var(--c-black); }
.plan__cta--secondary:hover { background: var(--c-black); color: var(--c-white); }
.plan__cta--primary { background: var(--c-primary); color: var(--c-white); box-shadow: 0 8px 20px rgba(4,84,255,0.35); }
.plan__cta--primary:hover { background: var(--c-primary-hover); }
.plan__features { display: flex; flex-direction: column; gap: 12px; }
.plan__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--c-text-light);
}
.plan--featured .plan__features li { color: rgba(255,255,255,0.82); }
.plan__check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-primary-bg);
  position: relative;
}
.plan--featured .plan__check { background: rgba(4,84,255,0.25); }
.plan__check::after {
  content: '';
  position: absolute;
  left: 5px; top: 4px;
  width: 4px; height: 7px;
  border: solid var(--c-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.plan--featured .plan__check::after { border-color: var(--c-primary-light); }

/* =====================================================
   BENEFITS
   ===================================================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.benefit__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit__icon img { width: 28px; height: 28px; }
.benefit__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.benefit__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-light);
}

/* =====================================================
   INTEGRATIONS — has decorative BG svg
   ===================================================== */
.integrations-section { overflow: hidden; }
.integrations-bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 140%;
  max-width: 1800px;
  height: auto;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.integrations {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.integration {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s var(--ease);
}
.integration:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.integration__logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.integration span {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.01em;
}
.integrations__cta { text-align: center; margin-top: 40px; position: relative; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.testimonial__quote-mark {
  flex-shrink: 0;
}
.testimonial__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  flex: 1;
  letter-spacing: -0.01em;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--c-bg-soft);
}
.testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.01em;
}
.testimonial__role {
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 2px;
}

/* =====================================================
   BLOG POSTS
   ===================================================== */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.post__image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #EBF1FF, #F5F6F8);
  overflow: hidden;
}
.post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.post:hover .post__image img { transform: scale(1.05); }
.post__body { padding: 24px 26px 28px; }
.post__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.post__meta .post__dot {
  width: 3px; height: 3px;
  background: currentColor;
  border-radius: 50%;
}
.post__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.post__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-light);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.faq__item[open] {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  transition: background 0.25s;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--c-black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq__icon::before {
  left: 50%; top: 50%;
  width: 10px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  left: 50%; top: 50%;
  width: 2px; height: 10px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon { background: var(--c-primary-bg); }
.faq__item[open] .faq__icon::before { background: var(--c-primary); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text-light);
  animation: faqSlide 0.3s var(--ease);
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   CTA SECTION — panoramic bg image
   ===================================================== */
.cta {
  padding: 80px 0 120px;
  background: var(--c-white);
}
.cta__inner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 90px 48px;
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-black);
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  opacity: 0.55;
}
.cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
  z-index: -1;
  pointer-events: none;
}
.cta__content { position: relative; z-index: 1; }
.cta__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--c-white);
}
.cta__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta__form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta__form:focus-within {
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}
.cta__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--c-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  outline: none;
}
.cta__input::placeholder { color: rgba(255,255,255,0.55); }
.cta__submit {
  background: var(--c-white);
  color: var(--c-black);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta__submit:hover { background: var(--c-primary); color: var(--c-white); transform: translateY(-1px); }
.cta__submit span { transition: transform 0.25s var(--ease); }
.cta__submit:hover span { transform: translateX(3px); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 80px 0 32px;
}
.footer .nav__logo { color: var(--c-black); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer__brand { max-width: 360px; }
.footer__tag {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-light);
}
.footer__subscribe {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.footer__subscribe input {
  flex: 1;
  padding: 11px 16px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  outline: none;
  transition: border-color 0.2s;
}
.footer__subscribe input:focus { border-color: var(--c-primary); }
.footer__subscribe button {
  padding: 11px 22px;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.footer__subscribe button:hover { background: var(--c-primary); }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  color: var(--c-text-light);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--c-black); }
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--c-text-light);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: var(--c-black); font-weight: 500; }

/* =====================================================
   SCROLL REVEALS
   ===================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .features, .pricing { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: 1fr; }
  .integrations { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .plan--featured { transform: none; }
  .section { padding: 80px 0; }
  .hero { padding-top: 140px; }
  .hero__dashboard { margin-top: 56px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__inner { padding: 0 20px; height: 68px; }
  .hero { padding: 120px 16px 0; }
  .hero__title { font-size: 42px; }
  .hero__subtitle { font-size: 15px; }
  .hero__form-wrap { border-radius: 20px; padding: 8px; }
  .hero__input { padding: 10px 14px; }
  .hero__submit { padding: 11px 18px; }
  .hero__dashboard { padding: 0 16px; margin-top: 40px; }
  .benefits, .testimonials { grid-template-columns: 1fr; }
  .integrations { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .cta__inner { padding: 56px 24px; }
  .cta__form { flex-direction: column; gap: 6px; border-radius: 16px; }
  .cta__submit { width: 100%; justify-content: center; }
  .section__title { font-size: 30px; }
  .footer__bottom { flex-direction: column; }
}
