/* ==========================================================================
   businessphone.tech
   Ink, violet and a lime highlighter. Warm paper, tight display type, thin
   rules instead of boxes wherever a box is not carrying its weight.
   ========================================================================== */

:root {
  --ink:        #151327;
  --ink-2:      #1f1b38;
  --ink-deep:   #0d0b1a;
  --violet:     #6d4aff;
  --violet-dk:  #4a29d6;
  --violet-lt:  #a08cff;
  --violet-wash:#f0ecff;
  --lime:       #cdf94a;
  --lime-dk:    #a8d215;
  --lime-wash:  #f3fdd4;

  --paper:      #ffffff;
  --sand:       #faf7f2;
  --sand-2:     #f2ece2;

  --text:       #191630;
  --text-2:     #4e4870;
  --text-3:     #7c7699;
  --line:       #e6e0d5;
  --line-2:     #d5cec0;

  --good:       #17916a;
  --warn:       #c98a1a;
  --bad:        #c4425f;

  --display: 'Space Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --body: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Space Grotesk', ui-monospace, monospace;

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 34px;
  --r-full: 999px;

  --shadow-lift: 0 2px 4px rgba(21,19,39,.04), 0 12px 32px rgba(21,19,39,.07);
  --shadow-pop:  0 4px 8px rgba(21,19,39,.05), 0 24px 56px rgba(21,19,39,.12);

  --ease: cubic-bezier(.22,.61,.36,1);
  --wrap: 1180px;
  --wrap-read: 720px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--violet-dk); text-decoration: none; }
a:hover { color: var(--violet); }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); letter-spacing: -.028em; }
h4 { font-size: 1.16rem; letter-spacing: -.02em; }
p { margin-bottom: 1.05rem; color: var(--text-2); }
p:last-child { margin-bottom: 0; }
strong, b { color: var(--ink); font-weight: 700; }

::selection { background: var(--lime); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; color: #fff; }

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

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --- layout --------------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--read { max-width: var(--wrap-read); }
.band { padding: clamp(64px, 8vw, 108px) 0; }
.band--tight { padding: clamp(44px, 5vw, 68px) 0; }
.band--paper { background: var(--paper); }
.band--sand { background: var(--sand-2); }
.band--ink { background: var(--ink); color: rgba(255,255,255,.72); }
.band--ink h2, .band--ink h3, .band--ink h4 { color: #fff; }
.band--ink p { color: rgba(255,255,255,.66); }
.band--ink a { color: var(--lime); }

.lede { font-size: 1.16rem; color: var(--text-2); }

/* --- eyebrow + section headings ------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--violet-dk);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: var(--violet); border-radius: 2px;
}
.band--ink .eyebrow { color: var(--lime); }
.band--ink .eyebrow::before { background: var(--lime); }

.head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 56px); }
.head--mid { margin-left: auto; margin-right: auto; text-align: center; }
.head--mid .eyebrow { justify-content: center; }
.head p { margin-top: 16px; font-size: 1.1rem; }

/* a lime marker-pen highlight behind a run of words */
.hl { position: relative; white-space: nowrap; }
.hl::after {
  content: ''; position: absolute; left: -.06em; right: -.06em; bottom: .13em;
  height: .3em; background: var(--lime); border-radius: 3px; z-index: -1;
}
.hl > span { position: relative; }
h1, h2, h3 { position: relative; z-index: 0; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .98rem;
  letter-spacing: -.01em; padding: 15px 26px; border-radius: var(--r-full);
  border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--violet); color: #fff; box-shadow: 0 8px 22px rgba(109,74,255,.3); }
.btn--primary:hover { background: var(--violet-dk); color: #fff; box-shadow: 0 12px 30px rgba(109,74,255,.38); }
.btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 8px 22px rgba(168,210,21,.32); }
.btn--lime:hover { background: #d9ff6b; color: var(--ink); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); color: #fff; }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(21,19,39,.03); }
/* .cta is a dark panel that can sit inside any band, so it needs the reversed
   ghost button in its own right, not only via .band--ink. */
.band--ink .btn--ghost,
.cta .btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.band--ink .btn--ghost:hover,
.cta .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- nav ------------------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); background: rgba(250,247,242,.95); }
.nav__in {
  max-width: var(--wrap); margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo { display: block; flex-shrink: 0; }
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  display: block; padding: 9px 14px; border-radius: var(--r-full);
  font-size: .95rem; font-weight: 600; color: var(--text-2);
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.nav__links a:hover { background: rgba(109,74,255,.08); color: var(--violet-dk); }
.nav__links a[aria-current="page"] { color: var(--ink); background: rgba(21,19,39,.05); }
.nav__cta { background: var(--ink) !important; color: #fff !important; padding: 11px 20px !important; }
.nav__cta:hover { background: var(--violet) !important; color: #fff !important; }
.nav__burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  border-radius: var(--r-sm); background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span {
  display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.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); }

@media (max-width: 940px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px 18px 20px; box-shadow: var(--shadow-lift);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 14px; font-size: 1.02rem; }
  .nav__cta { margin-top: 8px; text-align: center; }
}

/* --- hero ----------------------------------------------------------------- */
.hero { position: relative; padding: clamp(50px, 6vw, 84px) 0 clamp(56px, 6vw, 90px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -30% -10% auto -10%; height: 130%;
  background:
    radial-gradient(52% 44% at 78% 18%, rgba(109,74,255,.16), transparent 68%),
    radial-gradient(38% 38% at 12% 8%, rgba(205,249,74,.28), transparent 70%);
  z-index: -1; pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(32px, 4vw, 60px);
  align-items: center;
}
/* balance leaves an orphan on the long keyword headline; greedy fill reads better */
.hero__title { margin-bottom: 22px; text-wrap: wrap; }
.hero__sub { font-size: clamp(1.08rem, 1.7vw, 1.3rem); max-width: 34em; margin-bottom: 30px; }

/* An editorial dateline instead of a badge. A rounded pill with a coloured
   chip in it is the single most generic element a landing page can open with. */
.dateline {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px; font-size: .84rem; color: var(--text-3);
}
.dateline__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: .75rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
}
.dateline__label::before {
  content: ''; width: 3px; height: 16px; border-radius: 2px; background: var(--lime);
}
.dateline__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }
.dateline time { font-variant-numeric: tabular-nums; }

.hero__meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .88rem; color: var(--text-3); }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { width: 15px; height: 15px; color: var(--good); flex-shrink: 0; }

/* the hero's ranked teaser card */
.podium {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 26px; box-shadow: var(--shadow-pop); position: relative;
  animation: podiumCard .6s var(--ease) both;
}
@keyframes podiumCard {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
.podium__title {
  font-family: var(--display); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px;
}
.podium__row {
  position: relative;
  display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 0; border-top: 1px solid var(--line);
  animation: podiumRow .55s var(--ease) both;
  animation-delay: calc(var(--i) * 120ms + 180ms);
}

/* The bar and the stagger are CSS, not script, so the card still animates with
   JavaScript off and never leaves a row stuck at opacity 0. */
@keyframes podiumRow {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes podiumFill { from { width: 0; } to { width: var(--w); } }
@keyframes rankPop {
  0%   { transform: scale(.55); opacity: 0; }
  62%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.podium__fill {
  position: absolute; left: 0; bottom: -1px; height: 2px; border-radius: 2px;
  width: var(--w); background: var(--line-2);
  animation: podiumFill .95s var(--ease) both;
  animation-delay: calc(var(--i) * 120ms + 420ms);
}
.podium__row--1 .podium__fill { background: linear-gradient(90deg, var(--violet), var(--violet-lt)); }
.podium__row--2 .podium__fill { background: linear-gradient(90deg, var(--lime-dk), var(--lime)); }
.podium__row:first-of-type { border-top: 0; }
.podium__rank {
  animation: rankPop .5s var(--ease) both;
  animation-delay: calc(var(--i) * 120ms + 260ms);
  width: 34px; height: 34px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  background: var(--sand-2); color: var(--text-3);
}
.podium__row--1 .podium__rank { background: var(--violet); color: #fff; }
.podium__row--2 .podium__rank { background: var(--lime); color: var(--ink); }
.podium__name { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -.02em; }
.podium__note { font-size: .82rem; color: var(--text-3); line-height: 1.4; }
.podium__score { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.podium__score b { font-variant-numeric: tabular-nums; }
.podium__score span { font-size: .78rem; color: var(--text-3); font-weight: 600; }
.podium__foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--text-3); }

/* --- ticker strip --------------------------------------------------------- */
.strip { background: var(--ink); color: rgba(255,255,255,.8); padding: 18px 0; }
.strip__in { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 38px; font-size: .88rem; font-weight: 600; }
.strip__in span { display: inline-flex; align-items: center; gap: 9px; }
.strip__in span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

/* --- stat row ------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--paper); padding: 30px 24px; }
.stat__n { font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.stat__n em { font-style: normal; color: var(--violet); }
.stat__l { margin-top: 10px; font-size: .88rem; color: var(--text-3); line-height: 1.4; }

/* --- cards ---------------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--line-2); }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--violet-wash); color: var(--violet-dk); margin-bottom: 18px;
}
.card__icon svg { width: 23px; height: 23px; }
.card h4 { margin-bottom: 9px; }
.card p { font-size: .96rem; }

/* --- the comparison table ------------------------------------------------- */
.tablewrap {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: auto; -webkit-overflow-scrolling: touch;
}
.ctable { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 940px; }
.ctable th, .ctable td { padding: 15px 14px; text-align: center; border-bottom: 1px solid var(--line); }
.ctable thead th {
  position: sticky; top: 0; z-index: 2;
  background: var(--ink); color: #fff; font-family: var(--display); font-weight: 700;
  font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; border-bottom: 0;
  padding: 16px 12px;
}
.ctable thead th:first-child { text-align: left; }
.ctable tbody td:first-child { text-align: left; }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable tbody tr:hover { background: var(--sand); }
.ctable .row--1 { background: var(--violet-wash); }
.ctable .row--1:hover { background: #e8e1ff; }
.ctable .row--2 { background: var(--lime-wash); }
.ctable .row--2:hover { background: #ecfbc4; }
.pname { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink); letter-spacing: -.02em; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pname small { display: block; width: 100%; font-family: var(--body); font-weight: 500; font-size: .8rem; color: var(--text-3); letter-spacing: 0; }
.tag {
  font-family: var(--display); font-size: .66rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 4px 9px; border-radius: var(--r-full); white-space: nowrap;
}
.tag--1 { background: var(--violet); color: #fff; }
.tag--2 { background: var(--lime); color: var(--ink); }
.money { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.money small { display: block; font-family: var(--body); font-weight: 500; font-size: .76rem; color: var(--text-3); }
.yes, .no, .part { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; font-size: .86rem; font-weight: 700; }
.yes { background: rgba(23,145,106,.12); color: var(--good); }
.no { background: rgba(196,66,95,.1); color: var(--bad); }
.part { background: rgba(201,138,26,.13); color: var(--warn); width: auto; padding: 4px 10px; border-radius: var(--r-full); font-size: .74rem; font-weight: 600; }
.score { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.score span { font-size: .76rem; color: var(--text-3); }
.tnote { margin-top: 14px; font-size: .84rem; color: var(--text-3); }

@media (max-width: 860px) {
  .ctable { min-width: 0; font-size: .9rem; }
  .ctable thead { display: none; }
  .ctable tbody tr { display: block; border-bottom: 1px solid var(--line-2); padding: 8px 0; }
  .ctable tbody tr:last-child { border-bottom: 0; }
  .ctable tbody td {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    text-align: right !important; padding: 9px 18px; border-bottom: 0;
  }
  .ctable tbody td::before {
    content: attr(data-l); font-family: var(--display); font-weight: 700; font-size: .72rem;
    letter-spacing: .05em; text-transform: uppercase; color: var(--text-3); text-align: left;
  }
  .ctable tbody td:first-child { padding-top: 16px; }
  .ctable tbody td:first-child::before { content: none; }
  .ctable tbody td:first-child { justify-content: flex-start; }
}

/* --- winner block --------------------------------------------------------- */
.winner {
  position: relative; background: var(--paper); border: 2px solid var(--violet);
  border-radius: var(--r-xl); padding: clamp(28px, 4vw, 46px);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 60px rgba(109,74,255,.13);
}
.winner--2 { border-color: var(--lime-dk); box-shadow: 0 20px 60px rgba(168,210,21,.16); }
.winner__flag {
  position: absolute; top: -15px; left: 34px;
  background: var(--violet); color: #fff; font-family: var(--display); font-weight: 700;
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--r-full);
}
.winner--2 .winner__flag { background: var(--lime); color: var(--ink); }
.winner__brand { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem,3vw,2.1rem); letter-spacing: -.035em; color: var(--ink); margin-bottom: 6px; }
.winner__line { font-size: 1.05rem; color: var(--text-2); margin-bottom: 22px; }
.ticks { list-style: none; display: grid; gap: 11px; margin: 0 0 26px; }
.ticks li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; font-size: .97rem; color: var(--text-2); }
.ticks li::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%; margin-top: 3px;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.4l3 3 6-6.8' fill='none' stroke='%23151327' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.bars { display: grid; gap: 13px; }
.bar__top { display: flex; justify-content: space-between; font-size: .88rem; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.bar__top b { font-family: var(--display); color: var(--ink); }
.bar__track { height: 8px; background: var(--sand-2); border-radius: var(--r-full); overflow: hidden; }
.bar__fill { height: 100%; border-radius: var(--r-full); background: linear-gradient(90deg, var(--violet), var(--violet-lt)); }
.winner--2 .bar__fill { background: linear-gradient(90deg, var(--lime-dk), var(--lime)); }

.ratingbox { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--sand); border-radius: var(--r); margin-bottom: 24px; }
.ratingbox__n { font-family: var(--display); font-weight: 700; font-size: 2.3rem; letter-spacing: -.045em; color: var(--ink); line-height: 1; }
.ratingbox__n span { font-size: 1rem; color: var(--text-3); }
.stars { color: var(--lime-dk); letter-spacing: 2px; font-size: 1rem; }
.ratingbox__l { font-size: .86rem; color: var(--text-3); }

/* --- provider cards ------------------------------------------------------- */
.pcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; position: relative; }
.pcard--1 { border: 2px solid var(--violet); }
.pcard--2 { border: 2px solid var(--lime-dk); }
.pcard__flag { position: absolute; top: -13px; left: 22px; }
.pcard__name { font-family: var(--display); font-weight: 700; font-size: 1.22rem; letter-spacing: -.03em; color: var(--ink); margin-bottom: 4px; }
.pcard__origin { font-size: .8rem; color: var(--text-3); margin-bottom: 18px; }
.pcard__price { font-family: var(--display); font-weight: 700; font-size: 2.1rem; letter-spacing: -.045em; color: var(--ink); line-height: 1; }
.pcard__price span { font-size: .9rem; font-family: var(--body); font-weight: 500; color: var(--text-3); letter-spacing: 0; }
.pcard__note { font-size: .82rem; color: var(--text-3); margin: 8px 0 18px; }
.pcard__billing { font-size: .8rem; color: var(--text-2); margin: 6px 0 12px; }
.pcard__billing b { color: var(--ink); }
/* the contract column: what the vendor advertises vs what not signing costs */
.annualcell { display: block; font-family: var(--display); font-weight: 700;
  font-size: .98rem; color: var(--text-2); }
.nocell { display: block; font-size: .82rem; line-height: 1.35; color: var(--text-3); font-style: italic; }
.nocell small { display: block; font-style: normal; font-size: .72rem; margin-top: 3px; }
.annualcell small { display: block; font-family: var(--body);
  font-weight: 500; font-size: .72rem; color: var(--text-3); margin-top: 2px; }
/* the "this price is not the whole story" line on Teams Phone, Zoom and 8x8 */
.pcard__caveat {
  font-size: .8rem; line-height: 1.5; color: var(--text-2); background: var(--lime-wash);
  border-left: 3px solid var(--lime-dk); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 10px 12px; margin: -8px 0 18px;
}
.pcard .ticks { margin-bottom: 20px; }
.pcard .ticks li { font-size: .9rem; }
.pcard__foot { margin-top: auto; display: grid; gap: 8px; }

/* --- the finder tool ------------------------------------------------------ */
.finder {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop); overflow: hidden;
}
.finder__bar { height: 5px; background: var(--sand-2); }
.finder__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--violet), var(--lime)); transition: width .4s var(--ease); }
.finder__body { padding: clamp(26px, 4vw, 44px); }
.finder__step { font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--violet-dk); margin-bottom: 14px; }
.finder__q { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -.033em; color: var(--ink); margin-bottom: 8px; }
.finder__hint { font-size: .95rem; color: var(--text-3); margin-bottom: 26px; }
.finder__opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opt {
  text-align: left; background: var(--sand); border: 2px solid var(--line);
  border-radius: var(--r); padding: 18px 20px; cursor: pointer; font-family: var(--body);
  transition: border-color .16s var(--ease), background-color .16s var(--ease), transform .16s var(--ease);
}
.opt:hover { border-color: var(--violet); background: var(--violet-wash); transform: translateY(-2px); }
.opt b { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--ink); letter-spacing: -.02em; margin-bottom: 3px; }
.opt span { font-size: .87rem; color: var(--text-3); }
.finder__nav { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.linkbtn { background: none; border: 0; font-family: var(--body); font-size: .92rem; font-weight: 600; color: var(--text-3); cursor: pointer; padding: 6px 0; }
.linkbtn:hover { color: var(--ink); }
.finder__dots { display: flex; gap: 6px; }
.finder__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); }
.finder__dots i.on { background: var(--violet); }

/* results */
.result__lead { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.result__lead h3 { margin-bottom: 6px; }
.rrow {
  display: grid; grid-template-columns: 44px 1fr 150px auto; gap: 18px; align-items: center;
  padding: 18px; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 10px;
  background: var(--paper);
}
.rrow--1 { border: 2px solid var(--violet); background: var(--violet-wash); }
.rrow--2 { border: 2px solid var(--lime-dk); background: var(--lime-wash); }
.rrow__rank { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.15rem; background: var(--sand-2); color: var(--text-3); }
.rrow--1 .rrow__rank { background: var(--violet); color: #fff; }
.rrow--2 .rrow__rank { background: var(--lime); color: var(--ink); }
.rrow__name { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.025em; color: var(--ink); }
.rrow__why { font-size: .89rem; color: var(--text-2); line-height: 1.45; margin-top: 2px; }
.rrow__meter { display: flex; align-items: center; gap: 10px; }
.rrow__track { flex: 1; height: 7px; background: rgba(21,19,39,.09); border-radius: var(--r-full); overflow: hidden; }
.rrow__fill { height: 100%; background: var(--violet); border-radius: var(--r-full); transition: width .7s var(--ease); }
.rrow--2 .rrow__fill { background: var(--lime-dk); }
.rrow__pct { font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--ink); min-width: 42px; text-align: right; }
@media (max-width: 720px) {
  .rrow { grid-template-columns: 40px 1fr; gap: 12px; }
  .rrow__meter { grid-column: 1 / -1; }
  .rrow .btn { grid-column: 1 / -1; width: 100%; }
}

/* --- quote / case study --------------------------------------------------- */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--violet);
  border-radius: var(--r); padding: 26px 28px;
}
.quote p { font-size: 1.05rem; color: var(--ink); font-weight: 500; line-height: 1.55; }
.quote footer { margin-top: 16px; font-size: .88rem; color: var(--text-3); }
.quote footer b { display: block; color: var(--ink); font-size: .95rem; }

.casecard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.casecard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.casecard__top { padding: 26px 26px 0; }
.casecard__sector { font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--violet-dk); margin-bottom: 12px; }
.casecard h3 { font-size: 1.28rem; margin-bottom: 10px; }
.casecard h3 a { color: inherit; }
.casecard h3 a:hover { color: var(--violet-dk); }
.casecard p { font-size: .94rem; }
.casecard__foot { margin-top: auto; padding: 20px 26px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .84rem; color: var(--text-3); }
.casecard__foot b { font-family: var(--display); color: var(--ink); }

/* --- news ----------------------------------------------------------------- */
.newscard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.newscard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.newscard__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: .78rem; color: var(--text-3); }
.cat { font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; background: var(--violet-wash); color: var(--violet-dk); padding: 4px 10px; border-radius: var(--r-full); }
.newscard h3 { font-size: 1.24rem; margin-bottom: 10px; }
.newscard h3 a { color: inherit; }
.newscard h3 a:hover { color: var(--violet-dk); }
.newscard p { font-size: .94rem; }
.newscard__more { margin-top: auto; padding-top: 18px; font-family: var(--display); font-weight: 700; font-size: .88rem; color: var(--violet-dk); }

/* --- article body --------------------------------------------------------- */
.artwrap { background: var(--paper); }
.arthead { padding: clamp(40px, 5vw, 70px) 0 clamp(26px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.crumbs { font-size: .85rem; color: var(--text-3); margin-bottom: 20px; }
.crumbs a { color: var(--text-3); }
.crumbs a:hover { color: var(--violet-dk); }
.arthead h1 { font-size: clamp(2.05rem, 4.6vw, 3.1rem); margin-bottom: 18px; }
.artmeta { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: .86rem; color: var(--text-3); margin-top: 22px; }

.prose { padding: clamp(36px, 4vw, 54px) 0 clamp(50px, 6vw, 78px); }
.prose h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); margin: 44px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.28rem; margin: 32px 0 12px; }
.prose p { font-size: 1.07rem; line-height: 1.72; margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.3rem 1.2rem; }
.prose li { margin-bottom: .55rem; color: var(--text-2); font-size: 1.05rem; line-height: 1.65; }
.prose li::marker { color: var(--violet); }
.prose blockquote { margin: 28px 0; padding: 22px 26px; background: var(--sand); border-left: 4px solid var(--lime-dk); border-radius: 0 var(--r) var(--r) 0; }
.prose blockquote p { font-size: 1.1rem; color: var(--ink); font-weight: 500; margin: 0; }
.prose blockquote cite { display: block; margin-top: 12px; font-style: normal; font-size: .88rem; color: var(--text-3); }
.prose table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: .95rem; }
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.prose th { font-family: var(--display); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-3); }
.prose td { color: var(--text-2); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; text-decoration-color: var(--violet-lt); }

.callout { margin: 30px 0; padding: 24px 26px; background: var(--violet-wash); border-radius: var(--r); border: 1px solid #ded4ff; }
.callout h4 { margin-bottom: 8px; }
.callout p { font-size: .98rem; margin-bottom: .6rem; }
.callout p:last-child { margin-bottom: 0; }
.callout--lime { background: var(--lime-wash); border-color: #dcf099; }

.keyfacts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin: 28px 0; grid-template-columns: repeat(2, 1fr); }
.keyfacts div { background: var(--paper); padding: 18px 20px; }
.keyfacts dt { font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); margin-bottom: 5px; }
.keyfacts dd { font-size: .98rem; color: var(--ink); font-weight: 600; }

/* --- faq ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 46px 22px 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.024em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px; border-right: 2.4px solid var(--violet); border-bottom: 2.4px solid var(--violet);
  transform: rotate(45deg); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details > div { padding: 0 20px 24px 0; }
.faq details p { font-size: 1rem; }

/* --- cta band ------------------------------------------------------------- */
.cta { position: relative; overflow: hidden; background: var(--ink); border-radius: var(--r-xl); padding: clamp(36px, 5vw, 64px); text-align: center; }
.cta::before {
  content: ''; position: absolute; inset: auto -20% -60% -20%; height: 140%;
  background: radial-gradient(48% 52% at 50% 100%, rgba(109,74,255,.4), transparent 70%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.7); max-width: 54ch; margin: 0 auto 28px; font-size: 1.08rem; }
.cta a:not(.btn) { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.cta .btn-row { justify-content: center; }

/* --- footer --------------------------------------------------------------- */
.footer { background: var(--ink-deep); color: rgba(255,255,255,.6); padding: 64px 0 0; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer__logo { height: 38px; width: auto; margin-bottom: 20px; }
.footer p { color: rgba(255,255,255,.55); font-size: .9rem; }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,.62); }
.footer a:hover { color: var(--lime); }
.footer__disc { margin-top: 18px; font-size: .8rem !important; color: rgba(255,255,255,.4) !important; line-height: 1.55; }
.footer__au { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; font-size: .85rem !important; color: rgba(255,255,255,.7) !important; }
.footer__au::before { content: ''; width: 26px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, #00843d 0 50%, #ffcd00 50% 100%); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 28px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.45); }

/* --- reveal --------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .podium, .podium__row, .podium__rank { animation: none; }
  .podium__fill { animation: none; width: var(--w); }
}

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .winner { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .finder__opts { grid-template-columns: 1fr; }
  .keyfacts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta { border-radius: var(--r-lg); }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
}

/* --- print ---------------------------------------------------------------- */
@media print {
  .nav, .footer, .cta, .btn { display: none !important; }
  body { background: #fff; font-size: 12pt; }
}
