:root {
  --ink: #16181d;
  --ink-soft: #4b5261;
  --muted: #737a88;
  --border: #e6e8ec;
  --bg: #f7f7f8;
  --surface: #ffffff;
  --brand: #1b4b91;
  --brand-dark: #123a72;
  --accent: #145da0;
  --green: #1a8f4c;
  --green-bg: #eafaf1;
  --red: #c1352a;
  --red-bg: #fdecea;
  --amber-bg: #fff6e5;
  --amber-border: #f0c869;
  --sale: #dd6b20;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(16, 20, 30, 0.04), 0 8px 24px rgba(16, 20, 30, 0.06);
  --container: 800px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.dcg {
  color: var(--ink);
  background: var(--bg);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}
.dcg img {
  max-width: 100%;
  display: block;
}
.dcg a {
  color: var(--accent);
  text-decoration: none;
}
.dcg a:hover {
  text-decoration: underline;
}
.dcg strong, .dcg b {
  font-weight: 600;
}
.dcg h1, .dcg h2, .dcg h3, .dcg h4 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 5px;
}
.dcg__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--brand);
  z-index: 200;
}

.dcg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.dcg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.dcg-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.dcg-header__brand img {
  height: 50px;
  width: auto;
}
.dcg-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dcg-header__nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
}
.dcg-header__nav a:hover {
  color: var(--ink);
  text-decoration: none;
}
@media (max-width: 680px) {
  .dcg-header__nav {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.dcg .btn-primary {
  background: var(--brand);
  color: #fff;
  transition: background 0.15s ease;
}
.dcg .btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
}
.dcg .btn-primary svg path {
  fill: #fff;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 14px;
}

.disclosure {
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  color: #4a3c14;
  margin: 24px 0;
}
.disclosure strong {
  color: #362b0d;
}

.hero {
  padding: 40px 0 8px;
  text-align: left;
}
.hero__eyebrow {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 40px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.hero__sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 20px;
}

.tag-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #eef1f6;
  color: var(--ink-soft);
}
.tag-badge--blue {
  background: #e7f0fc;
  color: #145da0;
}
.tag-badge--green {
  background: var(--green-bg);
  color: var(--green);
}
.tag-badge--amber {
  background: var(--amber-bg);
  color: #8a6d1c;
}

.byline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.byline__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.byline strong {
  color: var(--ink-soft);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 20px 0 8px;
}
.hero-image img {
  width: 100%;
}

.section {
  padding: 36px 0;
}
.section--card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
@media (max-width: 600px) {
  .section--card {
    padding: 22px;
  }
}
.section--card:last-of-type {
  margin-bottom: 36px;
}
.section h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent);
  margin: 4px 0 28px;
}

.guide-list {
  margin: 0 0 6px;
  padding-left: 0;
  list-style: none;
}
.guide-list li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.guide-list li:first-child {
  border-top: none;
}
.guide-list b {
  color: var(--ink);
}

.compare-section {
  padding: 36px 0 0 0;
}
.compare-section .tag-badge {
  margin-bottom: 10px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  background: #fafafb;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  font-weight: 700;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody tr.is-featured {
  background: #eef4fc;
  box-shadow: inset 4px 0 0 var(--brand);
}
.compare-table td.pick {
  font-weight: 700;
  color: var(--ink);
}
.compare-table td .price, .compare-table td.price {
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 700px) {
  .compare-table {
    display: block;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .compare-table thead {
    display: none;
  }
  .compare-table tbody {
    display: grid;
    gap: 12px;
  }
  .compare-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "bestfor bestfor" "pick    price" "why     why";
    row-gap: 4px;
    column-gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
  }
  .compare-table tr.is-featured {
    border-color: var(--brand);
    box-shadow: inset 4px 0 0 var(--brand);
    border-radius: 0px var(--radius) var(--radius) 0px;
  }
  .compare-table td {
    display: block;
    width: auto;
    border: none;
    padding: 0;
  }
  .compare-table td.best-for {
    grid-area: bestfor;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 2px;
  }
  .compare-table td.pick {
    grid-area: pick;
    font-size: 16.5px;
  }
  .compare-table td.price {
    grid-area: price;
    justify-self: end;
    align-self: start;
    font-size: 15px;
  }
  .compare-table td.why {
    grid-area: why;
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 4px;
  }
}

.table-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
}

.product {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.product:first-of-type {
  border-top: none;
}

.product__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.product__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.product__price {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}

.product__sale {
  background: var(--sale);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 999px;
}

.featured-badge {
  display: inline-block;
  background: #e7f0fc;
  color: #145da0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.product-figure {
  margin: 0 0 18px;
  text-align: center;
}
.product-figure img {
  border-radius: var(--radius);
  max-height: 420px;
  margin: 0 auto;
}
.product-figure figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.product__body p {
  margin: 0 0 14px;
}

.subhead {
  font-weight: 700;
  font-size: 18px;
  margin: 22px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.subhead--pros {
  color: var(--green);
}
.subhead--cons {
  color: var(--red);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15.5px;
}

.feature-icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 15px;
  font-weight: 700;
}
.feature-icon--pro {
  background: var(--green-bg);
  color: var(--green);
}
.feature-icon--con {
  background: var(--red-bg);
  color: var(--red);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 8px 0 18px;
  border: 1px solid var(--border);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.closing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.closing p:last-child {
  margin-bottom: 0;
}

.dcg-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.dcg-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.dcg-footer__links a {
  color: var(--ink-soft);
  font-weight: 600;
}
