/* ============================================================
   CATaskKit — marketing site styles
   Theme is carried over from the Attendly app:
   all-blue palette: #1573e6 primary, #2ba3f0 sky, #4f5bd5 indigo, Plus Jakarta Sans.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* brand — all-blue family */
  --blue: #1573e6;
  --blue-deep: #0f57b4;
  --blue-soft: #e8f1fe;
  --sky: #2ba3f0;          /* bright sky-blue — secondary accent */
  --sky-deep: #1380cc;
  --sky-soft: #e3f2fd;
  --indigo: #4f5bd5;       /* deep indigo — tertiary accent */
  --indigo-soft: #ebedfc;
  --brand-grad: linear-gradient(110deg, #2ba3f0 0%, #1573e6 50%, #0f57b4 100%);
  --brand-grad-soft: linear-gradient(110deg, #e3f2fd, #e8f1fe);

  /* neutrals */
  --bg: #ffffff;
  --bg-2: #f4f6fa;
  --bg-3: #eef2f7;
  --panel: #ffffff;
  --ink-1: #0f1722;
  --ink-2: #45505f;
  --ink-3: #8b95a4;
  --line: #e8ecf2;
  --line-soft: #f0f3f7;

  /* status (mirrors app) */
  --amber: #cf870f;
  --red: #e0463a;

  /* type */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  /* shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 2px 10px rgba(31, 45, 71, 0.06);
  --shadow-md: 0 12px 30px rgba(31, 45, 71, 0.10);
  --shadow-lg: 0 28px 64px rgba(31, 45, 71, 0.16);
  --shadow-blue: 0 16px 40px rgba(21, 115, 230, 0.28);

  --maxw: 1180px;
  --nav-h: 70px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-1);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: rgba(21, 115, 230, 0.18); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow.sky { color: var(--sky-deep); background: var(--sky-soft); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin: 18px 0 0;
}
.section-head p { margin-top: 16px; font-size: 18px; color: var(--ink-2); font-weight: 500; }

.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  padding: 0 22px; height: 50px; border-radius: 14px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, filter .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 20px 46px rgba(21,115,230,.34); }
.btn--grad { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-blue); background-size: 160% 160%; }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(21,115,230,.34); }
.btn--ghost { background: var(--panel); color: var(--ink-1); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: #cdd6e2; box-shadow: var(--shadow-md); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--blue-deep); box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--sm { height: 42px; font-size: 14.5px; padding: 0 18px; border-radius: 12px; }
.btn--lg { height: 56px; font-size: 16.5px; padding: 0 28px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(31,45,71,.02);
}
.nav__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__links a {
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  padding: 9px 14px; border-radius: 10px; transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--ink-1); background: var(--bg-3); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__signin { font-size: 15px; font-weight: 700; color: var(--ink-1); padding: 9px 14px; border-radius: 10px; }
.nav__signin:hover { background: var(--bg-3); }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 11px; align-items: center; justify-content: center; }
.nav__burger:hover { background: var(--bg-3); }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink-1); border-radius: 2px; position: relative; transition: .2s; }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink-1); border-radius: 2px; transition: .2s; }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
  padding: 24px; flex-direction: column; gap: 6px;
  display: none; transform: translateY(-8px); opacity: 0; transition: .22s ease;
}
body.menu-open .mobile-menu { display: flex; transform: none; opacity: 1; }
.mobile-menu a { font-size: 19px; font-weight: 700; padding: 16px 8px; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 14px; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 80px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(620px 420px at 78% -6%, rgba(21,115,230,.16), transparent 60%),
    radial-gradient(560px 420px at 8% 4%, rgba(25,166,74,.14), transparent 58%);
}
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(31,45,71,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,45,71,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px); font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.04; margin: 22px 0 0;
}
.hero__sub { margin-top: 22px; font-size: 19px; line-height: 1.55; color: var(--ink-2); font-weight: 500; max-width: 540px; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--ink-3); font-size: 14px; font-weight: 600; }
.hero__note .dot { display: inline-flex; align-items: center; gap: 7px; }
.hero__note .dot svg { width: 16px; height: 16px; color: var(--sky); }

/* ---------- Hero product visual (CSS dashboard + phone) ---------- */
.hero__visual { position: relative; min-height: 460px; }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.dash {
  position: relative; background: var(--panel); border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden;
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
}
.dash__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.dash__bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dash__bar i:nth-child(1){ background:#ff5f57; } .dash__bar i:nth-child(2){ background:#febc2e; } .dash__bar i:nth-child(3){ background:#28c840; }
.dash__bar .url { margin-left: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); background: #fff; border: 1px solid var(--line); padding: 4px 12px; border-radius: 7px; }
.dash__body { display: grid; grid-template-columns: 168px 1fr; min-height: 360px; }
.dash__side { background: var(--bg-2); border-right: 1px solid var(--line); padding: 16px 12px; }
.dash__logo { display:flex; align-items:center; gap:8px; font-weight:800; font-size:15px; letter-spacing:-.02em; padding: 4px 6px 14px; }
.dash__logo .mk { width: 22px; height: 22px; border-radius: 7px; background: var(--brand-grad); display:inline-flex; align-items:center; justify-content:center; }
.dash__logo .mk svg { width: 13px; height: 13px; color:#fff; }
.dash__nav { display:flex; flex-direction:column; gap:3px; }
.dash__nav div { display:flex; align-items:center; gap:9px; padding:8px 9px; border-radius:9px; font-size:12.5px; font-weight:600; color: var(--ink-2); }
.dash__nav div svg { width:15px; height:15px; opacity:.7; }
.dash__nav div.on { background: var(--blue-soft); color: var(--blue-deep); }
.dash__nav div.on svg { opacity:1; }
.dash__main { padding: 18px; }
.dash__h { display:flex; justify-content:space-between; align-items:center; margin-bottom: 14px; }
.dash__h h4 { font-size: 15px; font-weight: 800; letter-spacing:-.02em; }
.dash__h .pill { font-size: 10.5px; font-weight:700; color: var(--sky-deep); background: var(--sky-soft); padding: 4px 10px; border-radius: 999px; }
.kpis { display:grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.kpi { background: var(--bg-2); border:1px solid var(--line); border-radius: 12px; padding: 11px; }
.kpi .lbl { font-size: 10px; font-weight:700; color: var(--ink-3); text-transform:uppercase; letter-spacing:.05em; }
.kpi .val { font-size: 21px; font-weight: 800; letter-spacing:-.03em; margin-top:3px; }
.kpi .val span { font-size:12px; color: var(--sky); font-weight:700; margin-left:3px; }
.chart { background: var(--bg-2); border:1px solid var(--line); border-radius: 14px; padding: 14px; }
.chart .row { display:flex; align-items:flex-end; gap:8px; height: 96px; margin-top: 8px; }
.chart .row b { flex:1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #3f8cee, #1573e6); opacity:.92; }
.chart .row b:nth-child(even){ background: linear-gradient(180deg, #54baf6, #2ba3f0); }

/* phone overlay */
.phone {
  position: absolute; right: -18px; bottom: -34px; width: 168px;
  background: #0f1722; border-radius: 28px; padding: 8px;
  box-shadow: var(--shadow-lg); border: 1px solid #222b38;
}
.phone__screen { background: var(--bg-2); border-radius: 21px; overflow: hidden; }
.phone__hero { background: var(--brand-grad); color:#fff; padding: 16px 14px 20px; position:relative; }
.phone__hero .t { font-size: 11px; font-weight:700; opacity:.85; }
.phone__hero .big { font-size: 20px; font-weight:800; letter-spacing:-.02em; margin-top:2px; }
.phone__ring { width: 86px; height: 86px; border-radius:50%; margin: 12px auto 4px; border: 7px solid rgba(255,255,255,.22); display:flex; align-items:center; justify-content:center; position:relative; }
.phone__ring::after { content:''; position:absolute; inset:-7px; border-radius:50%; border:7px solid #fff; border-right-color:transparent; border-bottom-color:transparent; transform: rotate(38deg); }
.phone__ring b { font-size: 13px; font-weight:800; }
.phone__body { padding: 12px; }
.phone__card { background:#fff; border:1px solid var(--line); border-radius: 12px; padding: 10px; margin-bottom: 8px; display:flex; align-items:center; gap:9px; }
.phone__card .ic { width: 28px; height:28px; border-radius:8px; background: var(--blue-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.phone__card .ic svg { width:15px; height:15px; color: var(--blue); }
.phone__card .ic.g { background: var(--sky-soft); } .phone__card .ic.g svg { color: var(--sky); }
.phone__card .ln { flex:1; }
.phone__card .ln i { display:block; height:6px; border-radius:4px; background: var(--bg-3); }
.phone__card .ln i:first-child { width: 70%; margin-bottom:5px; }
.phone__card .ln i:last-child { width: 44%; }

/* badge chips floating around hero visual */
.chip {
  position:absolute; background:#fff; border:1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 10px 13px; display:flex; align-items:center; gap:9px;
  font-size: 13px; font-weight:700;
}
.chip .ic { width:30px; height:30px; border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.chip .ic svg { width:16px; height:16px; }
.chip small { display:block; font-size:10.5px; font-weight:600; color: var(--ink-3); }
.chip--1 { top: 6px; left: -26px; }
.chip--2 { bottom: 92px; left: -40px; }

/* ============================================================
   MARQUEE / trust strip
   ============================================================ */
.strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background: var(--bg-2); padding: 26px 0; }
.strip__inner { display:flex; align-items:center; justify-content:center; gap: 48px; flex-wrap:wrap; }
.strip__item { display:flex; flex-direction:column; align-items:center; }
.strip__item b { font-size: 28px; font-weight:800; letter-spacing:-.03em; }
.strip__item span { font-size: 13px; font-weight:600; color: var(--ink-3); margin-top:2px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-card {
  display:grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items:center;
  background: var(--panel); border:1px solid var(--line); border-radius: var(--r-xl);
  padding: 44px; box-shadow: var(--shadow-sm); position:relative; overflow:hidden;
}
.product-card::before {
  content:''; position:absolute; top:-40%; right:-10%; width:520px; height:520px;
  background: radial-gradient(circle, rgba(21,115,230,.10), transparent 65%); pointer-events:none;
}
.product-card__logo { display:flex; align-items:center; gap:11px; }
.product-card__logo .mk { width:46px; height:46px; border-radius:14px; background: var(--brand-grad); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-blue); }
.product-card__logo .mk svg { width:26px; height:26px; color:#fff; }
.product-card__logo b { font-size: 23px; font-weight:800; letter-spacing:-.03em; }
.product-card__logo small { display:block; font-size:12px; font-weight:600; color: var(--ink-3); }
.product-card h3 { font-size: 30px; font-weight:800; letter-spacing:-.03em; margin: 20px 0 0; line-height:1.15; }
.product-card p { margin-top: 14px; font-size: 16.5px; color: var(--ink-2); font-weight:500; }
.product-card__list { margin-top: 20px; display:grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; }
.product-card__list li { display:flex; align-items:center; gap:9px; font-size:14.5px; font-weight:600; color: var(--ink-2); }
.product-card__list li svg { width:18px; height:18px; color: var(--sky); flex-shrink:0; }
.product-card__cta { margin-top: 28px; display:flex; gap:12px; flex-wrap:wrap; }

.soon {
  margin-top: 22px; display:grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.soon__card {
  border:1px dashed var(--line); border-radius: var(--r-md); padding: 22px; background: var(--bg-2);
  position:relative;
}
.soon__card .tag { position:absolute; top:14px; right:14px; font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-3); background:#fff; border:1px solid var(--line); padding:3px 9px; border-radius:999px; }
.soon__card .ic { width:42px; height:42px; border-radius:12px; background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; }
.soon__card .ic svg { width:22px; height:22px; color: var(--ink-2); }
.soon__card h4 { font-size:17px; font-weight:800; letter-spacing:-.02em; margin:14px 0 0; }
.soon__card p { font-size:14px; color: var(--ink-3); font-weight:500; margin-top:6px; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--panel); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #dbe3ee; }
.feature__ic { width:52px; height:52px; border-radius:15px; display:flex; align-items:center; justify-content:center; background: var(--blue-soft); }
.feature__ic svg { width:26px; height:26px; color: var(--blue); }
.feature:nth-child(3n+2) .feature__ic { background: var(--sky-soft); }
.feature:nth-child(3n+2) .feature__ic svg { color: var(--sky); }
.feature:nth-child(3n) .feature__ic { background: var(--indigo-soft); }
.feature:nth-child(3n) .feature__ic svg { color: var(--indigo); }
.feature h3 { font-size: 19px; font-weight:800; letter-spacing:-.02em; margin: 18px 0 0; }
.feature p { margin-top: 9px; font-size: 15px; color: var(--ink-2); font-weight:500; line-height:1.55; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; position:relative; }
.step { background: var(--panel); border:1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; position:relative; }
.step__n { width:46px; height:46px; border-radius:14px; background: var(--brand-grad); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:19px; box-shadow: var(--shadow-blue); }
.step h3 { font-size:19px; font-weight:800; letter-spacing:-.02em; margin: 18px 0 0; }
.step p { margin-top:8px; font-size:15px; color: var(--ink-2); font-weight:500; }

/* ============================================================
   MOBILE / split feature
   ============================================================ */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.split--rev .split__media { order: 2; }
.split h2 { font-size: clamp(28px,3.6vw,40px); font-weight:800; letter-spacing:-.03em; line-height:1.12; }
.split p { margin-top:18px; font-size:17px; color: var(--ink-2); font-weight:500; }
.split__list { margin-top: 24px; display:flex; flex-direction:column; gap:16px; }
.split__list li { display:flex; gap:14px; align-items:flex-start; }
.split__list .ic { width:38px; height:38px; border-radius:11px; flex-shrink:0; background: var(--blue-soft); display:flex; align-items:center; justify-content:center; }
.split__list .ic svg { width:19px; height:19px; color: var(--blue); }
.split__list b { font-size:16px; font-weight:800; letter-spacing:-.01em; display:block; }
.split__list span { font-size:14.5px; color: var(--ink-2); font-weight:500; }

.split__media { display:flex; justify-content:center; }
.media-card {
  background: var(--brand-grad-soft); border:1px solid var(--line); border-radius: var(--r-xl);
  padding: 40px; width:100%; display:flex; justify-content:center; box-shadow: var(--shadow-sm);
}

/* big phone mock */
.bigphone { width: 268px; background:#0f1722; border-radius: 38px; padding:10px; box-shadow: var(--shadow-lg); }
.bigphone__notch { width:120px; height:24px; background:#0f1722; border-radius:0 0 16px 16px; margin: 0 auto; position:relative; z-index:2; margin-bottom:-24px; }
.bigphone__scr { background:#fff; border-radius: 30px; overflow:hidden; }
.bp__hero { background: var(--brand-grad); color:#fff; padding: 38px 20px 26px; }
.bp__hero .hi { font-size:13px; font-weight:700; opacity:.88; }
.bp__hero .nm { font-size:23px; font-weight:800; letter-spacing:-.02em; }
.bp__ring { width:130px; height:130px; border-radius:50%; margin: 18px auto 8px; border:9px solid rgba(255,255,255,.2); display:flex; flex-direction:column; align-items:center; justify-content:center; position:relative; }
.bp__ring::after { content:''; position:absolute; inset:-9px; border-radius:50%; border:9px solid #fff; border-right-color:transparent; border-bottom-color:transparent; transform: rotate(120deg); }
.bp__ring .st { font-size:11px; font-weight:700; opacity:.85; }
.bp__ring .tm { font-size:20px; font-weight:800; }
.bp__btn { background:#fff; color: var(--blue-deep); text-align:center; font-weight:800; font-size:14px; padding:11px; border-radius:13px; margin-top:6px; }
.bp__body { padding: 16px; }
.bp__sec { font-size:12px; font-weight:800; color: var(--ink-3); text-transform:uppercase; letter-spacing:.06em; margin: 4px 0 10px; }
.bp__row { display:flex; align-items:center; gap:11px; padding:11px; border:1px solid var(--line); border-radius:13px; margin-bottom:9px; }
.bp__row .ic { width:34px; height:34px; border-radius:10px; background: var(--blue-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.bp__row .ic svg { width:17px; height:17px; color: var(--blue); }
.bp__row .ic.g { background: var(--sky-soft); } .bp__row .ic.g svg { color: var(--sky); }
.bp__row .ic.a { background: #f8eedb; } .bp__row .ic.a svg { color: var(--amber); }
.bp__row b { font-size:14px; font-weight:700; display:block; }
.bp__row small { font-size:12px; color: var(--ink-3); font-weight:600; }
.bp__row .amt { margin-left:auto; font-weight:800; font-size:14px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items:stretch; }
.price {
  background: var(--panel); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; display:flex; flex-direction:column; position:relative;
  transition: transform .18s, box-shadow .18s;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price--featured { border:2px solid var(--blue); box-shadow: var(--shadow-blue); }
.price__tag { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background: var(--brand-grad); color:#fff; font-size:11.5px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; padding:6px 14px; border-radius:999px; box-shadow: var(--shadow-blue); }
.price h3 { font-size:17px; font-weight:800; letter-spacing:-.01em; }
.price__seats { font-size:13px; color: var(--ink-3); font-weight:600; margin-top:3px; }
.price__amt { margin-top: 18px; display:flex; align-items:baseline; gap:4px; }
.price__amt .cur { font-size:22px; font-weight:800; }
.price__amt .num { font-size:46px; font-weight:800; letter-spacing:-.04em; line-height:1; }
.price__amt .per { font-size:13px; color: var(--ink-3); font-weight:600; }
.price__free { font-size:46px; font-weight:800; letter-spacing:-.04em; margin-top:14px; }
.price ul { margin-top: 20px; display:flex; flex-direction:column; gap:11px; flex:1; }
.price ul li { display:flex; gap:9px; align-items:flex-start; font-size:14px; font-weight:600; color: var(--ink-2); }
.price ul li svg { width:17px; height:17px; color: var(--sky); flex-shrink:0; margin-top:1px; }
.price .btn { margin-top: 22px; width:100%; }
.pricing-note { text-align:center; margin-top: 28px; font-size:14.5px; color: var(--ink-3); font-weight:500; }
.pricing-note b { color: var(--ink-2); }

/* ---------- Interactive billing calculator ---------- */
.calc {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 40px; background: var(--panel);
}
.calc__controls { padding: 38px; }
.calc__label { display:flex; justify-content:space-between; align-items:flex-end; gap:16px; flex-wrap:wrap; }
.calc__label > span { font-size: 18px; font-weight: 800; letter-spacing:-.02em; }
.calc__count { display:flex; align-items:center; gap:9px; }
.calc__count input {
  width: 88px; height: 50px; border:1.5px solid var(--line); border-radius: 12px; background: var(--panel);
  font-family: inherit; font-size: 23px; font-weight: 800; text-align:center; color: var(--ink-1);
  letter-spacing:-.02em; outline:none; transition: border-color .15s, box-shadow .15s; -moz-appearance: textfield; appearance: textfield;
}
.calc__count input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.calc__count input::-webkit-outer-spin-button, .calc__count input::-webkit-inner-spin-button { -webkit-appearance:none; margin:0; }
.calc__count span { font-size: 14px; font-weight:700; color: var(--ink-3); }

.calc__slider { -webkit-appearance:none; appearance:none; width:100%; height:8px; border-radius:999px; margin: 28px 0 9px; background: linear-gradient(90deg, var(--blue) var(--fill,8%), var(--bg-3) var(--fill,8%)); outline:none; cursor:pointer; }
.calc__slider::-webkit-slider-thumb { -webkit-appearance:none; width:26px; height:26px; border-radius:50%; background:#fff; border:6px solid var(--blue); box-shadow: var(--shadow-sm); cursor:pointer; }
.calc__slider::-moz-range-thumb { width:22px; height:22px; border-radius:50%; background:#fff; border:6px solid var(--blue); box-shadow: var(--shadow-sm); cursor:pointer; }
.calc__ticks { display:flex; justify-content:space-between; font-size:11.5px; font-weight:700; color: var(--ink-3); }

.calc__addon {
  display:flex; align-items:center; gap:14px; margin-top: 26px; padding: 15px 16px;
  border:1px solid var(--line); border-radius: var(--r-md); cursor:pointer; background: var(--bg-2);
  transition: border-color .15s; position:relative;
}
.calc__addon:hover { border-color:#cdd6e2; }
.calc__addon input { position:absolute; opacity:0; width:1px; height:1px; pointer-events:none; }
.calc__switch { position:relative; width:46px; height:27px; border-radius:999px; background: var(--bg-3); border:1px solid var(--line); flex-shrink:0; transition: background .18s, border-color .18s; }
.calc__switch::after { content:''; position:absolute; top:2px; left:2px; width:21px; height:21px; border-radius:50%; background:#fff; box-shadow: var(--shadow-sm); transition: transform .18s; }
.calc__addon input:checked + .calc__switch { background: var(--blue); border-color: var(--blue); }
.calc__addon input:checked + .calc__switch::after { transform: translateX(19px); }
.calc__addon input:focus-visible + .calc__switch { box-shadow: 0 0 0 3px var(--blue-soft); }
.calc__addon b { font-size:14.5px; font-weight:800; letter-spacing:-.01em; display:block; }
.calc__addon small { font-size:12.5px; font-weight:600; color: var(--ink-3); }

.calc__result { background: var(--brand-grad); color:#fff; padding: 38px; display:flex; flex-direction:column; position:relative; overflow:hidden; }
.calc__result::before { content:''; position:absolute; top:-90px; right:-50px; width:250px; height:250px; border-radius:50%; background: rgba(255,255,255,.12); pointer-events:none; }
.calc__plan { font-size:12.5px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; opacity:.92; position:relative; }
.calc__rate { font-size:15px; font-weight:600; opacity:.94; margin-top:6px; position:relative; }
.calc__total { margin-top: 16px; position:relative; }
.calc__big { font-size: 54px; font-weight:800; letter-spacing:-.04em; line-height:1; }
.calc__per { font-size:14.5px; font-weight:600; opacity:.9; margin-top:8px; }
.calc__lines { margin-top: 20px; display:flex; flex-direction:column; gap:8px; position:relative; }
.calc__lines .ln { display:flex; justify-content:space-between; gap:14px; font-size:13.5px; font-weight:600; opacity:.96; border-bottom:1px solid rgba(255,255,255,.16); padding-bottom:8px; }
.calc__lines .ln:last-child { border-bottom:none; padding-bottom:0; }
.calc__lines .ln span:last-child { font-weight:800; white-space:nowrap; }
.calc__cta { margin-top: 24px; width:100%; }
.calc__note { font-size:11.5px; font-weight:600; opacity:.84; margin-top:13px; text-align:center; position:relative; }

/* add-on banner */
.addon {
  margin-top: 28px; display:flex; align-items:center; gap:22px; flex-wrap:wrap;
  background: var(--brand-grad-soft); border:1px solid var(--line); border-radius: var(--r-lg); padding: 26px 30px;
}
.addon .ic { width:54px; height:54px; border-radius:15px; background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.addon .ic svg { width:28px; height:28px; color: var(--sky); }
.addon h4 { font-size:18px; font-weight:800; letter-spacing:-.02em; }
.addon p { font-size:14.5px; color: var(--ink-2); font-weight:500; margin-top:3px; }
.addon .amt { margin-left:auto; text-align:right; }
.addon .amt b { font-size:24px; font-weight:800; letter-spacing:-.02em; }
.addon .amt span { display:block; font-size:12.5px; color: var(--ink-3); font-weight:600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display:flex; flex-direction:column; gap:12px; }
.faq__item { border:1px solid var(--line); border-radius: var(--r-md); background: var(--panel); overflow:hidden; transition: border-color .18s, box-shadow .18s; }
.faq__item[open] { border-color:#dbe3ee; box-shadow: var(--shadow-sm); }
.faq__item summary { list-style:none; cursor:pointer; padding: 20px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-size:16.5px; font-weight:700; letter-spacing:-.01em; }
.faq__item summary::-webkit-details-marker { display:none; }
.faq__item summary .pl { width:26px; height:26px; flex-shrink:0; border-radius:8px; background: var(--bg-3); display:flex; align-items:center; justify-content:center; transition:.2s; }
.faq__item summary .pl svg { width:16px; height:16px; color: var(--ink-2); transition:.2s; }
.faq__item[open] summary .pl { background: var(--blue-soft); }
.faq__item[open] summary .pl svg { transform: rotate(45deg); color: var(--blue); }
.faq__item .a { padding: 0 24px 22px; font-size:15.5px; color: var(--ink-2); font-weight:500; line-height:1.6; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner { position:relative; overflow:hidden; background: var(--brand-grad); border-radius: var(--r-xl); padding: 64px 48px; text-align:center; color:#fff; box-shadow: var(--shadow-lg); }
.cta-banner::before { content:''; position:absolute; top:-120px; right:-60px; width:380px; height:380px; border-radius:50%; background: rgba(255,255,255,.12); }
.cta-banner::after { content:''; position:absolute; bottom:-140px; left:-40px; width:320px; height:320px; border-radius:50%; background: rgba(255,255,255,.10); }
.cta-banner h2 { font-size: clamp(30px,4vw,46px); font-weight:800; letter-spacing:-.03em; position:relative; line-height:1.1; }
.cta-banner p { margin: 16px auto 0; font-size:18px; font-weight:500; max-width:560px; opacity:.94; position:relative; }
.cta-banner .btns { margin-top:32px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0e1420; color: #aeb8c6; padding: 72px 0 32px; }
.footer__top { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 30px; filter: brightness(0) invert(1); opacity:.95; }
.footer__brand p { margin-top: 16px; font-size: 14.5px; line-height:1.6; max-width: 300px; color:#8b97a8; }
.footer__social { margin-top: 20px; display:flex; gap:10px; }
.footer__social a { width:38px; height:38px; border-radius:11px; background: rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:.16s; }
.footer__social a:hover { background: var(--blue); transform: translateY(-2px); }
.footer__social svg { width:18px; height:18px; color:#fff; }
.footer__col h5 { font-size:13px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:#fff; margin-bottom:16px; }
.footer__col a { display:block; font-size:14.5px; padding:7px 0; color:#8b97a8; transition:.14s; }
.footer__col a:hover { color:#fff; }
.footer__bottom { margin-top: 52px; padding-top: 26px; border-top:1px solid rgba(255,255,255,.08); display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; font-size:13.5px; color:#6b7686; }
.footer__bottom .made { display:flex; align-items:center; gap:7px; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; } .reveal.d2 { transition-delay:.16s; } .reveal.d3 { transition-delay:.24s; } .reveal.d4 { transition-delay:.32s; }

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.legal-hero { padding: calc(var(--nav-h) + 54px) 0 40px; background: var(--bg-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.legal-hero__bg { position:absolute; inset:0; z-index:0; pointer-events:none; background: radial-gradient(560px 320px at 82% -20%, rgba(21,115,230,.14), transparent 60%); }
.legal-hero .wrap { position: relative; z-index: 1; }
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; }
.legal-hero .updated { margin-top: 12px; font-size: 14px; color: var(--ink-3); font-weight: 600; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.legal-hero .updated svg { width: 15px; height: 15px; }

.legal-wrap { display: grid; grid-template-columns: 248px 1fr; gap: 52px; padding: 52px 0 84px; align-items: start; }
.legal-nav { position: sticky; top: 90px; }
.legal-nav h5 { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; padding-left: 12px; }
.legal-nav a { display: block; padding: 10px 13px; border-radius: 11px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: background .14s, color .14s; }
.legal-nav a:hover { background: var(--bg-3); color: var(--ink-1); }
.legal-nav a.active { background: var(--blue-soft); color: var(--blue-deep); font-weight: 700; }

.legal-content { max-width: 768px; }
.legal-content > p:first-of-type { font-size: 17px; color: var(--ink-2); }
.legal-content h2 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 38px 0 0; padding-top: 6px; scroll-margin-top: 90px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 16.5px; font-weight: 800; letter-spacing: -.01em; margin: 22px 0 0; }
.legal-content p { margin-top: 13px; font-size: 15.5px; color: var(--ink-2); font-weight: 500; line-height: 1.72; }
.legal-content ul, .legal-content ol { margin: 13px 0 0; padding-left: 22px; }
.legal-content li { margin-top: 8px; font-size: 15.5px; color: var(--ink-2); font-weight: 500; line-height: 1.7; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--ink-1); font-weight: 700; }
.legal-content a { color: var(--blue); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-content code { font-family: var(--mono); font-size: .9em; background: var(--bg-3); padding: 2px 6px; border-radius: 6px; }

.legal-content table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 14.5px; }
.legal-content th, .legal-content td { text-align: left; padding: 11px 14px; border: 1px solid var(--line); }
.legal-content th { background: var(--bg-2); font-weight: 700; color: var(--ink-1); }
.legal-content td { color: var(--ink-2); font-weight: 500; }

.legal-callout { margin-top: 20px; padding: 16px 18px; border-radius: var(--r-md); background: var(--blue-soft); border: 1px solid #cfe2fb; font-size: 14.5px; color: var(--ink-2); font-weight: 500; line-height: 1.65; }
.legal-callout strong { color: var(--blue-deep); }

.legal-related { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; gap: 14px; flex-wrap: wrap; }
.legal-related a { font-size: 14px; font-weight: 700; color: var(--blue); padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; transition: border-color .14s, background .14s; }
.legal-related a:hover { background: var(--blue-soft); border-color: #cfe2fb; }

@media (max-width: 860px) {
  .legal-wrap { grid-template-columns: 1fr; gap: 8px; padding-top: 28px; }
  .legal-nav { position: static; margin-bottom: 22px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px; background: var(--panel); }
  .legal-nav { display: flex; flex-direction: column; }
}

/* ============================================================
   LIVE DEMO embed
   ============================================================ */
.demo-toolbar { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:16px; }
.demo-seg { display:inline-flex; background:var(--bg-3); border-radius:13px; padding:4px; gap:4px; }
.demo-seg button { border:none; background:transparent; font-family:inherit; font-weight:700; font-size:14px; color:var(--ink-2); padding:9px 18px; border-radius:10px; cursor:pointer; display:inline-flex; align-items:center; gap:8px; transition:background .15s, color .15s; }
.demo-seg button svg { width:16px; height:16px; }
.demo-seg button[aria-selected="true"] { background:#fff; color:var(--blue-deep); box-shadow:var(--shadow-sm); }
.demo-hint { font-size:13px; color:var(--ink-3); font-weight:600; display:inline-flex; align-items:center; gap:7px; margin-left:auto; }
.demo-hint svg { width:15px; height:15px; color:var(--blue); }

.demo-window { border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-lg); background:var(--panel); }
.demo-window__bar { display:flex; align-items:center; gap:7px; padding:12px 15px; background:var(--bg-2); border-bottom:1px solid var(--line); }
.demo-window__bar i { width:11px; height:11px; border-radius:50%; display:inline-block; flex-shrink:0; }
.demo-window__bar i:nth-child(1){ background:#ff5f57; } .demo-window__bar i:nth-child(2){ background:#febc2e; } .demo-window__bar i:nth-child(3){ background:#28c840; }
.demo-window__url { margin-left:10px; font-family:var(--mono); font-size:12px; color:var(--ink-3); background:#fff; border:1px solid var(--line); padding:5px 13px; border-radius:8px; flex:1; min-width:0; max-width:460px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.demo-window__open { margin-left:auto; flex-shrink:0; font-size:12.5px; font-weight:700; color:var(--blue); display:inline-flex; align-items:center; gap:6px; padding:6px 12px; border-radius:9px; }
.demo-window__open:hover { background:var(--blue-soft); }
.demo-window__open svg { width:14px; height:14px; }
.demo-frame { width:100%; height:768px; border:none; display:block; background:var(--bg-2); }

.demo-try { margin-top:28px; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.demo-try .t { background:var(--panel); border:1px solid var(--line); border-radius:var(--r-md); padding:16px; }
.demo-try .t .ic { width:38px; height:38px; border-radius:11px; background:var(--blue-soft); display:flex; align-items:center; justify-content:center; margin-bottom:10px; }
.demo-try .t .ic svg { width:19px; height:19px; color:var(--blue); }
.demo-try .t b { font-size:14.5px; font-weight:800; letter-spacing:-.01em; display:block; }
.demo-try .t span { font-size:13px; color:var(--ink-3); font-weight:500; }

@media (max-width:860px){ .demo-try { grid-template-columns:1fr 1fr; } }
@media (max-width:600px){
  .demo-frame { height:660px; }
  .demo-hint { margin-left:0; width:100%; }
  .demo-window__url { max-width:none; }
  .demo-window__open span { display:none; }
  .demo-try { grid-template-columns:1fr; }
}

/* ============================================================
   Reduced motion — respect the user's OS preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .float { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 560px; margin: 0 auto; width:100%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav__links, .nav__signin { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 72px 0; }
  .product-card { grid-template-columns: 1fr; padding: 30px; gap: 28px; }
  .product-card__list { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc__controls, .calc__result { padding: 30px; }
  .soon { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .strip__inner { gap: 28px 40px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .features { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 24px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .chip { display: none; }
  .phone { right: 4px; bottom: -20px; width: 142px; }
  .btn { width: 100%; }
  .hero__cta .btn, .cta-banner .btn { width: auto; }
  .addon .amt { margin-left: 0; text-align:left; }
}
@media (max-width: 380px) {
  .hero__cta .btn { width: 100%; }
}
