
:root {

  --c-lightest: #F5F0FD;   /* backgrounds, alternate rows */
  --c-light:    #EDE4F8;   /* header fills, hero background */
  --c-brand:    #AD96DC;   /* main brand colour */
  --c-accent:   #7B5EA7;   /* secondary text, icons */
  --c-bold:     #3C3489;   /* bold text, checkmarks, bars */
  --c-dark:     #26215C;   /* headings, dark panels, logo fill */
  --c-logo:     #1A1A2E;   /* logo circles */
  --c-white:    #FFFFFF;

  --c-text:        #423C5C;  /* body copy */
  --c-text-muted:  #746E8C;  /* secondary / helper copy */
  --c-border:      #DDD3F0;  /* hairline borders */
  --c-border-soft: #E9E1F7;

  --c-success: #3E9C6F;
  --c-off:     #B4AEC4;
  --c-warn:    #C99A3E;

  --c-tech-a:       #7B8EC4;  /* badge / circle tone */
  --c-tech-a-deep:  #4B559A;  /* solid card background */
  --c-tech-a-tint:  #E7EAF7;  /* light pill / tag background */

  --c-tech-b:       #6DCB89;
  --c-tech-b-deep:  #2E8F6E;
  --c-tech-b-tint:  #E3F6EB;

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-w: 1200px;
  --gap: 24px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-pill: 999px;

  --section-pad-y: 56px;
}

@media (min-width: 768px) {
  :root { --section-pad-y: 72px; }
}
@media (min-width: 992px) {
  :root { --section-pad-y: 96px; }
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}

.section { padding-block: var(--section-pad-y); }
.section-tight { padding-block: calc(var(--section-pad-y) * 0.55); }
.section-no-pad-top { padding-top: 0; }
.section-no-pad-bottom { padding-bottom: 0; }

.section-head { margin-bottom: 32px;}
.section-head--wide { max-width: none; }
@media (min-width: 768px) {
  .section-head { margin-bottom: 40px; }
}

.divider {
  height: 1px;
  background: var(--c-border-soft);
  border: 0;
  margin: 0;
}

/* ---------- Backgrounds & text colour utilities ---------- */
.bg-white   { background: var(--c-white); }
.bg-lightest{ background: var(--c-lightest); }
.bg-light   { background: var(--c-light); }
.bg-brand   { background: var(--c-brand); }
.bg-dark    { background: var(--c-dark); }
.bg-navy    { background: var(--c-bold); }

.text-white  { color: var(--c-white) !important; }
.text-muted  { color: var(--c-text-muted); }
.text-accent { color: var(--c-accent); }
.text-dark   { color: var(--c-dark); }
.text-center { text-align: center; }

.on-dark .eyebrow,
.text-white .eyebrow { color: var(--c-brand); }

/* ---------- Typography ---------- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}

.h1, .h2, .h3, .h4 {
  font-family: var(--font-display) !important;
  color: var(--c-dark);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  text-align: left !important;
}
.h1 { font-size: clamp(34px, 6vw, 56px); }
.h2 { font-size: clamp(26px, 4vw, 38px); }
.h3 { font-size: clamp(19px, 2.4vw, 22px); }
.h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.color-accent { color: var(--c-accent);    font-family: var(--font-display) !important;}

.subtitle {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--c-accent);
  margin-top: 14px;
}

.lead {
  font-size: 16px;
  color: var(--c-text);
  margin-top: 16px;
}

.copy-muted { color: var(--c-text-muted); }

/* ---------- Meta bar (thin info strip, e.g. top of page / footer) ---------- */
.meta-bar {
  background: var(--c-bold);
  color: var(--c-white);
  font-size: 13px;
}
.meta-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 24px;
  padding-block: 12px;
}
.meta-bar strong { font-weight: 700; }
.meta-bar-muted { opacity: 0.75; }

/* ---------- Logo mark (row of overlapping circles) ---------- */
.logo-mark {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}
.logo-mark-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-logo);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin-left: -8px;
  flex-shrink: 0;
}
.logo-mark-circle:first-child { margin-left: 0; }
.logo-mark-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-dark);
  margin-inline: 4px;
  flex-shrink: 0;
}
.logo-mark--sm .logo-mark-circle {
  width: 26px;
  height: 26px;
  font-size: 10px;
  margin-left: -5px;
}
.logo-mark--sm .logo-mark-dot { width: 4px; height: 4px; margin-inline: 2px; }

/* Colour variants for logo circles — used when a product has more than one
   named technology (each gets its own circle colour + label). */
.logo-mark-circle--a { background: var(--c-tech-a); }
.logo-mark-circle--b { background: var(--c-tech-b); }

/* A labelled group of circles (label above the row), used when several
   technology marks appear side by side in a hero or table header. */
.logo-group-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.logo-group-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}

/* ---------- Pills / tags ---------- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--c-white);
  border: 1px solid var(--c-brand);
  color: var(--c-dark);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  background: var(--c-brand);
  color: var(--c-dark);
  font-size: 12.5px;
  font-weight: 600;
}
.card-body .tag {
  background: var(--c-light);
}
.tag--a {
    background: #b4b0eb;
    color: #7f7bb7;
}
.tag--b {
    background: #85cccc;
    color: #348787;
}

.label-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--c-light);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.label-pill-muted {
  background: transparent;
  color: var(--c-text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 10px;
}

/* ---------- Grid system ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2col { grid-template-columns: 1fr; }
.grid-3col { grid-template-columns: 1fr; }
.grid-4col { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2col { grid-template-columns: repeat(2, 1fr); }
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
  .grid-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .grid-3col { grid-template-columns: repeat(3, 1fr); }
  .grid-4col { grid-template-columns: repeat(4, 1fr); }
}

.grid-gap-s { --gap: 16px; }
.grid-gap-l { --gap: 32px; }

/* ---------- Cards ---------- */
.card {
  border-radius: var(--radius-m);
  padding: 26px;
  height: 100%;
}
.card-bordered {
  background: var(--c-light);
  border: 1px solid var(--c-brand);
}
.card-top-border {    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: solid 3px var(--c-brand);}
.card-outline {
  background: var(--c-white);
  border: 1px solid var(--c-border);
}
.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.card-center { text-align: center; }


.card--tech-a {
    background: #a19ed6;
}
.card--tech-b {
    background: #85cccd;
    color: #348787 !important;
}
.card-tech {
  padding: 30px;
  color: rgba(255,255,255,0.9);
}
.card-tech .logo-group-label { color: rgba(255,255,255,0.65); }
.card-tech .card-title { color: var(--c-white); }
.card-tech .card-text { color: rgba(255,255,255,0.78); }
.card-tech-b .card-text,
.card-tech-b .logo-group-label {
    color: #348787 !important;
}
.card-tech-a .list-check li::before {background: #7f7bb7 !important;}
.card-tech-b .list-check li::before {background: #348787 !important;}

.card-title { margin: 4px 0 10px; }
.card-subtitle {
  font-family: var(--font-display) !important;
  font-style: italic;
  color: var(--c-accent);
  font-size: 14px;
  margin: -6px 0 12px;
}
.card-text { color: var(--c-text-muted); font-size: 14.5px; }
.card-dark .card-text {
    color: var(--c-brand);
}

/* Card with a media block on top (e.g. image placeholder) */
.card-media-wrap { padding: 0; overflow: hidden; }
.card-media-wrap .card-body { padding: 24px; }

.media-placeholder {
  background: var(--c-light);
  border-bottom: 1px dashed var(--c-border);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.media-placeholder-label {
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 600;
}
.media-placeholder-hint {
  color: var(--c-text-muted);
  font-style: italic;
  font-size: 12px;
  margin-top: 6px;
}

/* ---------- Icon circles ---------- */
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-circle svg { width: 20px; height: 20px; }
.icon-circle--on-dark {
  background: rgba(255,255,255,0.12);
  color: var(--c-brand);
}
.icon-circle--on-light {
  background: var(--c-light);
  color: var(--c-accent);
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-brand);
  color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-body);
  margin: 0 auto 16px;
}

/* ---------- Panel (large tinted feature block) ---------- */
.panel {
  border-radius: var(--radius-l);
  padding: 32px 20px;
}
@media (min-width: 768px) {
  .panel { padding: 48px 40px; }
}
.panel-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.panel-kicker::before {
  content: "";
  width: 3px;
  height: 16px;
  background: var(--c-brand);
  display: inline-block;
  border-radius: 2px;
}
.panel-title { color: var(--c-white); }
.panel-text {
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin-top: 14px;
}
.panel-body { margin-top: 32px; }

/* ---------- Bulleted / dot list ---------- */
.list-dot li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--c-text-muted);
}
#description .list-dot li {
    padding-bottom: 16px;
    margin: 0;
}
.list-dot li:last-child { margin-bottom: 0; }
.list-dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-brand);
}
.list-dot strong { color: var(--c-dark); }

/* Check-marked list — same rhythm as .list-dot but with an icon marker,
   used for feature checklists (e.g. inside a solid colour card). */
.list-check li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14.5px;
}
.list-check li:last-child { margin-bottom: 0; }
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px;
}
.list-check--on-light li::before { background-color: var(--c-light); }
.list-check--on-light li {
  background-image: none;
}
.list-check--on-light li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233C3489' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.table th, .table td, table.table thead>tr>th {
  text-align: left;
  padding: 16px 20px;
  vertical-align: top;
  font-size: 14.5px;
}
table.table tbody>tr>td, table.table tbody>tr>th, table.table thead>tr>td, table.table thead>tr>th {padding: 16px 20px;}
.table thead th {
  font-size: 13px;
  color: var(--c-text-muted);
  border-bottom: 2px solid var(--c-brand);
  font-weight: 600;
  padding-bottom: 18px;
}
.table thead th.th-highlight {
  background: var(--c-light);
  border-radius: 10px 10px 0 0;
}
.table tbody td:first-child {
  color: var(--c-text-muted);
  font-size: 13.5px;
  white-space: nowrap;
}
.table tbody tr td.cell-highlight {
  background: var(--c-lightest);
  font-weight: 600;
  color: var(--c-dark);
}
.table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--c-border-soft); }

.cell-flag { display: flex; align-items: flex-start; gap: 10px; }
.flag-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.flag-icon svg { width: 11px; height: 11px; }
.flag-icon--yes { background: var(--c-brand); color: var(--c-bold); }
.flag-icon--no {
    background: #ffacac;
    color: red;
}
.flag-icon--warn {
    background: var(--c-light);
    color: var(--c-brand);
}

/* ---------- Content box (e.g. ingredient list, notes) ---------- */
.box {
  border-radius: var(--radius-m);
  padding: 24px;
}
.box-note {
  font-style: italic;
  font-size: 13px;
  color: var(--c-brand);
  margin-top: 12px;
}

/* ---------- FAQ / accordion list ---------- */
.stacked-list > * + * {
  border-top: 1px solid var(--c-border-soft);
  padding-top: 22px;
  margin-top: 22px;
}
.stacked-item-title {
  font-family: var(--font-display) !important;
  font-size: 18px;
  color: var(--c-dark);
  margin: 0 0 8px;
}
.stacked-item-text { color: var(--c-dark); font-size: 14.5px; }

/* ---------- Swatch / spec list ---------- */
.swatch-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 14px;
}
.swatch-row + .swatch-row { border-top: 1px solid var(--c-border-soft); }
.swatch-color {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  flex-shrink: 0;
  margin-top: 2px;
}
.swatch-title { font-weight: 700; color: var(--c-dark); font-size: 14.5px; }
.swatch-desc { color: var(--c-text-muted); font-size: 13px; margin-top: 2px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding-block: 22px;
  font-size: 13.5px;
}
.site-footer strong { color: var(--c-white); }

/* ---------- Responsive helpers ---------- */
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: initial; }
  .hide-tablet-up { display: none; }
}
