:root {
  --blue: #2d88ca;
  --deep: #1f6ba3;
  --ink: #0a1f3d;
  --ink2: #0e2e52;
  --sky: #eef4fa;
  --line: #e7ecf1;
  --grey: #586675;
  --green: #0c7a52;
  --green-bg: #e6f5ee;
  --paper: #fafbfc;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Source Serif 4", Georgia, Cambria, serif;
  color: #27384b;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.72;
  font-size: 18.5px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
.col {
  max-width: 680px;
  margin: 0 auto;
  padding-inline: 24px;
}
.col p,
.col li,
figcaption,
.coa-row .val,
.cmp-l {
  overflow-wrap: break-word;
}
h1,
h2,
h3,
.disp {
  font-family: "Schibsted Grotesk", "Inter", sans-serif;
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: var(--ink);
}
a {
  color: var(--deep);
}
strong {
  color: var(--ink);
  font-weight: 700;
}

/* 1 urgency banner */
.ubar {
  background: var(--ink);
  color: #dce8f4;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
}
.ubar b {
  color: #fff;
  font-weight: 800;
}

/* editorial kicker strip */
.pubstrip {
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--grey);
}

/* 2-4 hero */
.hero {
  position: relative;
  background: #0a1f3d;
}
.hero > img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  opacity: 0.92;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 18, 32, 0.1) 30%,
    rgba(8, 18, 32, 0.55) 70%,
    rgba(8, 18, 32, 0.92)
  );
}
.hero .htext {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero .htext .in {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 34px;
  color: #fff;
}
.hero .kick {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fc4e6;
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 5.2vw, 46px);
  font-weight: 800;
  margin: 0;
}
.hero .byline {
  margin-top: 16px;
  font-size: 14px;
  color: #c7d7e6;
}
.hero .byline b {
  color: #fff;
  font-weight: 600;
}

/* body */
.body {
  padding-top: 36px;
}
.body p {
  margin: 0 0 20px;
}
.deck {
  font-size: 21px;
  line-height: 1.5;
  color: #33475c;
  font-weight: 500;
  margin: 0 0 24px;
}
.body h2 {
  font-size: clamp(24px, 3.8vw, 31px);
  font-weight: 800;
  margin: 44px 0 14px;
}
.body h2 + p {
  margin-top: 0;
}
.lead::first-letter {
  font-family: "Schibsted Grotesk";
  font-weight: 800;
  font-size: 60px;
  float: left;
  line-height: 0.84;
  padding: 6px 12px 0 0;
  color: var(--ink);
}

/* figures */
figure {
  margin: 34px 0;
}
figure img {
  width: 100%;
  border-radius: 14px;
}
figcaption {
  color: var(--grey);
  font-size: 14px;
  margin-top: 10px;
  padding-left: 14px;
  border-left: 3px solid var(--line);
}

/* COA annotated card */
.coa {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--line),
    0 24px 50px -38px rgba(6, 12, 24, 0.45);
}
.coa-top {
  background: var(--deep);
  color: #fff;
  padding: 15px 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.coa-top .lab {
  font-family: "Schibsted Grotesk";
  font-weight: 800;
  font-size: 14.5px;
}
.coa-top .tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.coa-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 19px;
  border-top: 1px solid var(--line);
  align-items: center;
  font-size: 15px;
  background: #fff;
}
.coa-row .k {
  color: var(--grey);
  font-weight: 600;
}
.coa-row .val {
  color: var(--ink);
  font-weight: 800;
  font-family: "Schibsted Grotesk";
  text-align: right;
}
.coa-row .val small {
  display: block;
  font-weight: 500;
  color: var(--green);
  font-size: 12.5px;
  font-family: "Inter";
  margin-top: 2px;
}
.pillg {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* star interrupter */
.starbar {
  text-align: center;
  background: var(--sky);
  border-radius: 14px;
  padding: 24px;
  margin: 34px 0;
}
.starbar .s {
  color: #e6a817;
  letter-spacing: 4px;
  font-size: 25px;
  line-height: 1;
}
.starbar .t {
  font-family: "Schibsted Grotesk";
  font-weight: 800;
  color: var(--ink);
  font-size: 18px;
  margin-top: 8px;
}
.starbar .sub {
  font-size: 13.5px;
  color: var(--grey);
  margin-top: 2px;
}

/* pain checklist */
.pain {
  list-style: none;
  margin: 18px 0 8px;
  padding: 0;
}
.pain li {
  position: relative;
  padding: 11px 0 11px 34px;
  font-size: 17px;
  color: #33475c;
  border-bottom: 1px solid var(--line);
}
.pain li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--blue);
  border-radius: 4px;
}
.pain li:first-child {
  padding-top: 0;
}
.pain li:first-child:before {
  top: 6px;
}

/* pull quote */
.pull {
  background: var(--sky);
  border-radius: 14px;
  padding: 30px 28px 24px;
  margin: 34px 0;
  font-family: "Schibsted Grotesk";
  font-size: 22px;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.4;
  position: relative;
}
.pull:before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 60px;
  color: var(--blue);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.pull em {
  font-style: normal;
  display: block;
  padding-left: 30px;
}
.pull span {
  display: block;
  margin-top: 12px;
  padding-left: 30px;
  font-family: "Inter";
  font-size: 15px;
  font-weight: 500;
  color: #4a5a6b;
}

/* field cards */
.fields {
  margin: 24px 0 8px;
}
.field {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.field:last-child {
  border-bottom: 1px solid var(--line);
}
.field .n {
  font-family: "Schibsted Grotesk";
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.field h3 {
  font-size: 18.5px;
  font-weight: 800;
  margin: 0 0 5px;
}
.field p {
  font-size: 16px;
  margin: 0 0 6px;
  color: #33475c;
  line-height: 1.6;
}
.field .look {
  font-size: 13.5px;
  color: var(--green);
  font-weight: 700;
}

/* red flags */
.flags {
  list-style: none;
  margin: 18px 0 8px;
  padding: 0;
}
.flags li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 11px;
  font-size: 16px;
  color: #33475c;
  line-height: 1.55;
  background: #fff;
}
.flags li:before {
  content: "!";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fbe9e7;
  color: #b23227;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.flags b {
  color: var(--ink);
}

/* reveal with image */
.reveal {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin: 38px 0;
}
.reveal img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.92;
}
.reveal .in {
  padding: 28px 28px 30px;
}
.reveal .eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8fbee6;
  margin-bottom: 10px;
}
.reveal h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 26px;
}
.reveal p {
  color: #c6d6e6;
  font-size: 16.5px;
  margin: 0 0 14px;
}
.reveal ul {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.reveal li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: #e6eff8;
  font-size: 16px;
}
.reveal li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: #6fb7ea;
  font-weight: 900;
}

/* reviews */
.rev {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.rev .stars {
  color: #e6a817;
  letter-spacing: 2px;
  font-size: 14px;
}
.rev p {
  font-size: 17px;
  color: var(--ink);
  margin: 9px 0 9px;
  line-height: 1.6;
}
.rev .who {
  font-size: 13.5px;
  color: var(--grey);
}
.rev .who b {
  color: var(--ink);
}
.vb {
  display: inline-block;
  margin-left: 7px;
  color: var(--green);
  font-weight: 700;
  font-size: 12.5px;
}

/* timeline */
.tl {
  list-style: none;
  margin: 22px 0 8px;
  padding: 0;
  counter-reset: step;
}
.tl li {
  position: relative;
  padding: 0 0 22px 52px;
  counter-increment: step;
}
.tl li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--deep);
  font-family: "Schibsted Grotesk";
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.tl li:after {
  content: "";
  position: absolute;
  left: 16.5px;
  top: 34px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.tl li:last-child:after {
  display: none;
}
.tl b {
  color: var(--ink);
}
.tl span {
  display: block;
  font-size: 16px;
  color: #33475c;
  margin-top: 2px;
}

/* comparison */
.cmp {
  border-radius: 14px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 0 0 1px var(--line);
}
.cmp-head {
  display: grid;
  grid-template-columns: 1fr 96px 96px;
}
.cmp-head .h0 {
  padding: 16px 18px;
}
.cmp-head .h1c {
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Schibsted Grotesk";
  font-weight: 800;
  font-size: 12.5px;
  text-align: center;
  padding: 14px 6px;
  line-height: 1.15;
}
.cmp-head .h2c {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 14px 6px;
  line-height: 1.2;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1fr 96px 96px;
  border-top: 1px solid var(--line);
}
.cmp-l {
  padding: 15px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.cmp-c {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
}
.cmp-c.on {
  background: #f4faf7;
}
.ck {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}
.xx {
  color: #afbac6;
  font-weight: 800;
  font-size: 16px;
}

/* offer */
.offer {
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 40px 28px;
  margin: 36px 0 10px;
}
.offer .badge {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.offer h2 {
  color: #fff;
  font-size: clamp(25px, 4.4vw, 33px);
  margin: 0 0 12px;
}
.offer p {
  color: #aec6dc;
  font-size: 16.5px;
  margin: 0 auto 22px;
  max-width: 480px;
}
.cta {
  display: inline-block;
  background: var(--deep);
  color: #fff;
  font-weight: 700;
  font-size: 16.5px;
  padding: 16px 34px;
  border-radius: 12px;
  transition: background 0.15s;
}
.cta:hover {
  background: #185c8e;
}
.offer .note {
  font-size: 13px;
  color: #9fbbd6;
  margin-top: 14px;
}

/* guarantee */
.guar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 26px 0;
  background: var(--paper);
}
.guar .ic {
  font-size: 24px;
  line-height: 1;
}
.guar h3 {
  font-size: 17.5px;
  font-weight: 800;
  margin: 0 0 5px;
}
.guar p {
  font-size: 15px;
  color: var(--grey);
  margin: 0;
  line-height: 1.55;
}

/* final */
.final {
  text-align: center;
  padding: 14px 0 4px;
}
.final h2 {
  font-size: clamp(23px, 3.6vw, 29px);
  margin: 0 0 16px;
}
.final .ps {
  font-size: 14px;
  color: var(--grey);
  margin-top: 14px;
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 30px 0 44px;
}
footer .ruo {
  font-family: "Schibsted Grotesk";
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 13.5px;
  margin-bottom: 12px;
}
footer p {
  font-size: 12.5px;
  color: #5f6e7e;
  line-height: 1.65;
  margin: 0 0 12px;
}
footer .cr {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

@media (max-width: 540px) {
  body {
    font-size: 17.5px;
  }
  .lead::first-letter {
    font-size: 50px;
  }
  .hero > img {
    max-height: 460px;
  }
}

/* applied research: editorial serif body, sans UI, byline row */
.ubar,
.pubstrip,
.cta,
.badge,
.pillg,
.vb,
.coa-top .lab,
.coa-top .tag,
.coa-row .val,
.coa-row .val small,
.starbar .t,
.field .look,
.cmp-l,
.cmp-head .h1c,
.cmp-head .h2c,
.reveal .eyebrow,
.guar h3,
.byline {
  font-family:
    "Inter",
    -apple-system,
    system-ui,
    sans-serif;
}
.byrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  margin: 6px 0 10px;
}
.byrow img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.byrow .who {
  font-family: "Schibsted Grotesk";
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
  min-width: 0;
  flex: 1 1 130px;
}
.byrow .who span {
  display: block;
  font-family: "Inter";
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
  margin-top: 2px;
}
.byrow .rate {
  margin-left: auto;
  text-align: right;
  font-family: "Inter";
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.35;
}
.byrow .rate b {
  color: var(--ink);
}
.byrow .rate .st {
  color: #e6a817;
  letter-spacing: 1px;
  font-size: 13px;
}
