/* WiseSentry by Wise Cloud — wisesentry.com.au
   Light theme. Palette, radii, shadows and gradient inherited from
   localvoiceagents.com.au so the two Wise Cloud products read as siblings. */

:root {
  --primary:       #6C3AED;
  --primary-light: #8B5CF6;
  --primary-dark:  #5B21B6;
  --primary-50:    rgba(108, 58, 237, 0.05);
  --primary-100:   rgba(108, 58, 237, 0.1);
  --primary-200:   rgba(108, 58, 237, 0.2);
  --accent:        #06B6D4;
  --accent-light:  #22D3EE;
  --gradient:      linear-gradient(135deg, #6C3AED 0%, #06B6D4 100%);

  --bg:         #FAFAFA;
  --bg-white:   #FFFFFF;
  --bg-dark:    #0F0F1A;
  --bg-tint:    #F5F3FF;

  --text:       #1A1A2E;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;

  --border:       #E5E7EB;
  --border-light: #F3F4F6;

  --good: #059669;
  --warn: #C77700;
  --bad:  #DC2626;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow:    0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);

  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

img { max-width: 100%; display: block; }

/* ---------- skip link (accessibility) ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 26px; height: 76px; }
.brand {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
  color: var(--text); font-weight: 800; letter-spacing: -.02em; font-size: 1.12rem;
}
.brand .mark { width: 28px; height: 31.5px; flex: none; display: block; }
.brand .bname { display: inline-flex; align-items: baseline; gap: 8px; }
.brand .by { color: var(--text-light); font-weight: 500; font-size: .76rem; }
.nav ul { display: flex; gap: 22px; list-style: none; margin: 0 0 0 auto; padding: 0; flex-wrap: wrap; }
.nav a { color: var(--text-secondary); text-decoration: none; font-size: .92rem; font-weight: 500; transition: var(--transition); }
.nav a:hover, .nav a:focus { color: var(--primary); }
.nav .tel {
  color: var(--text); font-weight: 700; text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav .tel:hover { color: var(--primary); }

/* Customer sign-in — sits immediately after the phone number, top right */
.nav .signin {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  border-radius: var(--radius-full);
  padding: 11px 22px; font-size: .9rem; font-weight: 700;
  color: #fff !important; text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(108, 58, 237, .28);
  transition: var(--transition);
}
.nav .signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 58, 237, .38);
  color: #fff !important;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  font-family: var(--font); white-space: nowrap;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 15px rgba(108, 58, 237, .3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108, 58, 237, .4); color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-50); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,.1); }
.btn-white:hover { transform: translateY(-2px); color: var(--primary-dark); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(108, 58, 237, .10), transparent 62%),
    radial-gradient(720px 380px at 4% 6%, rgba(6, 182, 212, .10), transparent 64%),
    var(--bg-white);
}
.eyebrow {
  display: inline-block;
  padding: 7px 16px; border-radius: var(--radius-full);
  background: var(--primary-100); color: var(--primary);
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin: 0 0 22px;
}
h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.1;
  letter-spacing: -.03em; margin: 0 0 24px; font-weight: 800;
}
.grad {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lede { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--text-secondary); max-width: 62ch; margin: 0; }

/* ---------- sections ---------- */
section { padding: 84px 0; border-bottom: 1px solid var(--border); background: var(--bg); }
section:nth-of-type(even) { background: var(--bg-white); }
section:last-of-type { border-bottom: 0; }
.kicker {
  display: inline-block;
  padding: 6px 16px; border-radius: var(--radius-full);
  background: var(--primary-100); color: var(--primary);
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin: 0 0 16px;
}
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.2; letter-spacing: -.025em; margin: 0 0 16px; font-weight: 800; }
h3 { font-size: 1.15rem; margin: 0 0 8px; font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0 0 16px; }
.sub { color: var(--text-secondary); max-width: 68ch; font-size: 1.02rem; }
a { color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
strong { font-weight: 700; }

/* ---------- the stat block (the evidence) ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; margin: 36px 0 0; }
.stat {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm);
}
.stat .n { font-size: 2.3rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--text); }
.stat .n.hi { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat .l { color: var(--text-secondary); font-size: .88rem; margin-top: 8px; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 20px; margin-top: 36px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--text-secondary); }
.card .ico { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.card h3 a { text-decoration: none; }

/* ---------- before / after contrast ---------- */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; align-items: stretch; }
.contrast .col {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.contrast .col.now { border-top: 4px solid var(--text-light); }
.contrast .col.ws  { border-top: 4px solid transparent;
  background-image: linear-gradient(var(--bg-white), var(--bg-white)), var(--gradient);
  background-origin: border-box; background-clip: padding-box, border-box; }
.contrast .col h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.contrast .col.now h3 { color: var(--text-light); }
.contrast .col.ws h3 { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.contrast ul { list-style: none; padding: 0; margin: 0; }
.contrast li { padding-left: 30px; position: relative; margin-bottom: 16px; color: var(--text-secondary); font-size: .96rem; }
.contrast li:last-child { margin-bottom: 0; }
.contrast .now li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--text-light); font-weight: 800; }
.contrast .ws  li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--good); font-weight: 800; }

/* ---------- glossary ---------- */
.termnav { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 8px; }
.termnav a {
  display: inline-block; padding: 8px 16px; border-radius: var(--radius-full);
  background: var(--bg-white); border: 1px solid var(--border);
  color: var(--text-secondary); text-decoration: none; font-size: .88rem; font-weight: 500;
  transition: var(--transition);
}
.termnav a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-50); }
.term {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px; margin-top: 20px;
  box-shadow: var(--shadow-sm); scroll-margin-top: 100px;
}
.term h3 { font-size: 1.3rem; margin-bottom: 4px; }
.term .also { color: var(--text-light); font-size: .84rem; margin: 0 0 14px; }
.term p { color: var(--text-secondary); }
.term p:last-child { margin-bottom: 0; }
.term .short { color: var(--text); font-weight: 500; }

/* ---------- steps ---------- */
.steps { counter-reset: s; display: grid; gap: 20px; margin-top: 36px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 30px; position: relative;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step p { color: var(--text-secondary); }
.step::before {
  counter-increment: s; content: counter(s);
  display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 14px;
  border-radius: 10px; background: var(--gradient);
  color: #fff; font-weight: 800; font-size: .95rem;
}

/* ---------- tables (comparisons) ---------- */
.tablewrap {
  overflow-x: auto; margin-top: 32px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-white); box-shadow: var(--shadow-sm);
}
table { border-collapse: collapse; width: 100%; font-size: .94rem; min-width: 560px; }
th, td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--border-light); vertical-align: top; }
thead th { background: var(--bg); color: var(--text-secondary); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
td.yes { color: var(--good); font-weight: 700; }
td.no  { color: var(--bad); font-weight: 600; }
.col-us { background: var(--primary-50); }
.ind {
  display: inline-block; margin-right: 8px; padding: 2px 9px;
  border-radius: var(--radius-full); background: var(--border-light);
  color: var(--text-secondary); font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; vertical-align: 1px;
}

/* ---------- alert mockup ---------- */
.alert {
  background: #fff; color: var(--text); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); max-width: 520px;
}
.alert .top { background: var(--bg-dark); padding: 16px 22px; }
.alert .top .t { color: #fff; font-weight: 700; font-size: .98rem; }
.alert .top .s { color: rgba(255,255,255,.55); font-size: .74rem; margin-top: 2px; }
.alert .body { padding: 20px 22px; }
.pill { display: inline-block; background: var(--bad); color: #fff; font-size: .7rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-full); letter-spacing: .04em; }
.alert .why { margin: 14px 0 16px; font-size: .92rem; line-height: 1.55; }
.alert dl { display: grid; grid-template-columns: 128px 1fr; gap: 8px 12px; margin: 0; font-size: .84rem; }
.alert dt { color: var(--text-light); }
.alert dd { margin: 0; font-weight: 700; }
.alert .note { margin-top: 18px; background: #FFFBEB; border-left: 4px solid var(--warn); color: #7C4A03; padding: 12px 14px; font-size: .82rem; border-radius: 0 6px 6px 0; }

/* ---------- callouts ---------- */
.callout {
  border-left: 4px solid var(--primary); background: var(--bg-tint);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0;
}
.callout.warn { border-left-color: var(--warn); background: #FFFBEB; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- lists ---------- */
ul.ticks, ul.crosses { list-style: none; padding: 0; margin: 22px 0 0; }
ul.ticks li, ul.crosses li { padding-left: 32px; position: relative; margin-bottom: 13px; color: var(--text-secondary); }
ul.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--good); font-weight: 800; }
ul.crosses li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--bad); font-weight: 800; }

/* ---------- FAQ ---------- */
details.faq {
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 22px 26px; margin-bottom: 14px; background: var(--bg-white);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
details.faq:hover { box-shadow: var(--shadow); }
details.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; color: var(--primary); font-weight: 800; font-size: 1.2rem; line-height: 1; }
details.faq[open] summary::after { content: "−"; }
details.faq p { margin: 16px 0 0; color: var(--text-secondary); }

/* ---------- CTA band (dark, for contrast) ---------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--bg-dark);
  border-radius: var(--radius-lg); padding: 56px 44px; text-align: center; margin: 0;
  box-shadow: var(--shadow-lg);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(108, 58, 237, .45), transparent 65%),
    radial-gradient(600px 300px at 85% 100%, rgba(6, 182, 212, .35), transparent 65%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 14px; color: #fff; }
.cta .sub { color: rgba(255,255,255,.75); }
.cta .btn-row { justify-content: center; }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cta .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ---------- footer ---------- */
footer.site { background: var(--bg-dark); color: rgba(255,255,255,.7); padding: 64px 0 32px; font-size: .9rem; }
footer.site .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 40px; }
footer.site h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 10px; }
footer.site a { color: rgba(255,255,255,.7); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,.5); font-size: .85rem;
}

/* ---------- breadcrumb ---------- */
.crumb { color: var(--text-light); font-size: .84rem; margin: 0 0 18px; }
.crumb a { color: var(--text-secondary); text-decoration: none; }
.crumb a:hover { color: var(--primary); }

/* ---------- misc ---------- */
.muted { color: var(--text-secondary); }
.small { font-size: .85rem; }
.center { text-align: center; }
hr.sep { border: 0; border-top: 1px solid var(--border); margin: 44px 0; }

@media (max-width: 860px) {
  .contrast { grid-template-columns: 1fr; }
  .nav { height: auto; padding: 14px 0; flex-wrap: wrap; gap: 14px; }
  .nav ul { margin-left: 0; gap: 16px; order: 3; width: 100%; }
  .nav .tel { margin-left: auto; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0 52px; }
  .cta { padding: 40px 24px; }
  .alert dl { grid-template-columns: 104px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .card:hover, .step:hover, .btn:hover, .nav .signin:hover { transform: none; }
}

/* illustrative-scenario badge — must never be mistaken for a real client result */
.badge-illus {
  display: inline-block; margin-bottom: 12px;
  padding: 5px 13px; border-radius: var(--radius-full);
  background: #FEF3C7; color: #92400E;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- product screenshots ---------- */
.shot {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-white);
}
.shot img { width: 100%; height: auto; display: block; }
.shotcap { color: var(--text-light); font-size: .82rem; margin: 12px 0 0; text-align: center; }
.shotgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; align-items: start; }
.shot-lead { margin-top: 36px; }
@media (max-width: 900px) { .shotgrid { grid-template-columns: 1fr; } }

/* ---------- header fit ----------
   "Client dashboard login" is a long label; the 1200px wrap made the nav wrap
   onto two rows. Give the header its own wider container and tighten the gaps. */
header.site .wrap { max-width: 1360px; }
.nav { gap: 18px; }
.nav ul { gap: 17px; }
.nav ul a { font-size: .88rem; }
.nav .tel { font-size: .95rem; }
.nav .signin { padding: 10px 18px; font-size: .86rem; }
@media (max-width: 1320px) {
  .brand .by { display: none; }
  .nav ul { gap: 14px; }
  .nav ul a { font-size: .85rem; }
}
@media (max-width: 1120px) {
  .nav .tel { display: none; }
}

/* ---------- the call that sounds fine: three-card walkthrough ---------- */
.callcard {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 30px 34px 34px; margin-top: 36px;
}
.callcard-head { margin-bottom: 26px; }
.callcard-head.standalone { margin: 44px 0 22px; }
.callcard-head h3 { font-size: 1.2rem; margin: 0 0 4px; }
.callcard-head p { margin: 0; color: var(--text-light); font-size: .84rem;
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.callcard-head.standalone p { text-transform: none; letter-spacing: 0;
  font-size: .95rem; color: var(--text-secondary); font-weight: 400; }
/* headings carry the section on their own now - no number chips */

/* the transcript, read as a conversation rather than a wall of text */
.chat { display: flex; flex-direction: column; gap: 22px; }
.t-row { display: flex; flex-direction: column; }
.t-row.you { align-items: flex-end; }
.bub {
  max-width: 84%; padding: 18px 22px; border-radius: 16px;
  font-size: 1.06rem; line-height: 1.65;
  color: var(--text);                 /* BOTH sides full contrast - grey-on-grey
                                         was what made this hard to read */
}
/* the customer is the one you are meant to be listening to, so they get the
   colour and your own team recedes */
.t-row.them .bub {
  background: #EDE9FE; border: 1px solid #C4B5FD;
  border-left: 4px solid var(--primary);
  border-bottom-left-radius: 5px;
}
.t-row.you .bub {
  background: #F1F5F9; border: 1px solid #DDE3EA;
  border-bottom-right-radius: 5px;
}
.bub .who { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 5px; }
.t-row.them .bub .who { color: var(--primary-dark); }
.t-row.you  .bub .who { color: #64748B; }
/* .t-row.them .bub already sets a background at (0,3,0); the flag state has to
   out-specify it or the highlight silently loses. */
.t-row.them .bub.flag, .t-row.you .bub.flag {
  background: #FEF3C7; border-color: #FCD34D; border-left-color: var(--warn);
  box-shadow: 0 2px 12px rgba(199,119,0,.14);
}
.t-row .bub.flag .who { color: var(--warn); }
.tellnote {
  max-width: 82%; margin: 9px 0 0; padding-left: 24px; position: relative;
  color: var(--warn); font-size: .89rem; font-weight: 600; line-height: 1.5;
}
.tellnote::before { content: "\2191"; position: absolute; left: 4px; top: 0; font-weight: 800; }

/* the two verdicts, side by side and equal */
.verdicts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.verdict { border-radius: var(--radius-lg); padding: 30px 32px; }
.v-label { font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  margin: 0 0 14px; }
.v-verdict { font-size: 1.08rem; font-weight: 800; margin: 0 0 18px; letter-spacing: -.01em; }
.verdict .score { font-size: 3.4rem; font-weight: 800; letter-spacing: -.04em; line-height: 1;
  margin-bottom: 10px; }
.verdict .score .of { font-size: 1.15rem; font-weight: 600; color: var(--text-light);
  letter-spacing: 0; }
.verdict ul { margin: 0 0 18px; }
.verdict li { font-size: .95rem; margin-bottom: 10px; }
.v-foot { font-size: .88rem; margin: 0; padding-top: 16px; }

.verdict.miss { background: var(--bg-white); border: 1px solid var(--border); }
.verdict.miss .v-label { color: var(--text-light); }
.verdict.miss .score { color: var(--good); }
.verdict.miss .v-verdict.good { color: var(--good); }
.verdict.miss li { color: var(--text-secondary); }
.verdict.miss .v-foot { color: var(--text-light); border-top: 1px solid var(--border-light); }

.verdict.hit { background: var(--bg-dark); color: #fff; box-shadow: var(--shadow-lg); border: 0; }
.verdict.hit .v-label { color: rgba(255,255,255,.5); }
.verdict.hit .v-verdict.bad { color: #fff; }
.verdict.hit li { color: rgba(255,255,255,.82); }
.verdict.hit ul.ticks li::before { color: #34D399; }
.verdict.hit .v-foot { color: rgba(255,255,255,.6); border-top: 1px solid rgba(255,255,255,.14); }
.verdict .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.verdict .tag { padding: 5px 13px; border-radius: var(--radius-full); font-size: .7rem;
  font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.tag.cat { background: rgba(255,255,255,.15); color: #fff; }
.tag.sev { background: var(--bad); color: #fff; }

/* the consequence */
.costcard {
  margin-top: 28px;
  background: var(--bg-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 34px 36px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.costcard::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 15% 0%, rgba(108,58,237,.40), transparent 65%),
              radial-gradient(600px 300px at 90% 100%, rgba(6,182,212,.28), transparent 65%); }
.costcard > * { position: relative; z-index: 1; }
.costcard h3 { color: #fff; font-size: 1.2rem; margin: 0 0 12px; }
.costcard p { color: rgba(255,255,255,.8); margin: 0 0 12px; font-size: 1rem; }
.costcard .punch { color: #fff; font-weight: 600; }
.costcard .last { color: #fff; font-weight: 800; font-size: 1.15rem; margin: 16px 0 0;
  letter-spacing: -.01em; }

@media (max-width: 900px) {
  .verdicts { grid-template-columns: 1fr; }
  .bub, .tellnote { max-width: 100%; }
  .callcard { padding: 24px 20px 26px; }
  .costcard { padding: 26px 22px; }
}

/* the sentiment card lists what the SCORE noticed - those are neutral
   observations, not failings, so they must not carry a red cross */
ul.neutral { list-style: none; padding: 0; margin: 22px 0 0; }
ul.neutral li { padding-left: 22px; position: relative; margin-bottom: 10px; }
ul.neutral li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--text-light);
}
.v-aside { font-size: .88rem; font-style: italic; color: var(--text-light);
  margin: 16px 0 18px; }
