/* == tokens == */
:root {
  --ink: #16181c;
  --slate: #565d66;
  --paper: #f6f5f2;
  --card: #ffffff;
  --line: #dcd9d3;
  --line-2: #efece7;
  --orange: #c04f04;
  --orange-hi: #e2620a;
  --orange-t: #fdf1e6;
  --red: #c0102a;
  --band: #16181c;
  --wrap: 1120px;
  --r: 4px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--orange-hi);
  outline-offset: 2px;
}
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }
h1, h2, h3 { line-height: 1.16; margin: 0 0 12px; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: 2.15rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.12rem; }
p { margin: 0 0 14px; }
.dk-skip {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  background: var(--orange); color: #fff; padding: 10px 16px;
}
.dk-skip:focus { left: 8px; top: 8px; }

/* == notice strip == */
.dk-notice {
  background: var(--orange-t);
  border-bottom: 2px solid var(--orange);
  background-image: repeating-linear-gradient(135deg, rgba(192,79,4,.10) 0 8px, transparent 8px 20px);
}
.dk-notice p {
  margin: 0; padding: 8px 18px; text-align: center;
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
  font-size: .78rem; letter-spacing: .02em; color: #6a3401;
}

/* == header == */
.dk-head { background: var(--band); color: #fff; position: relative; z-index: 40; }
.dk-head-in { display: flex; align-items: center; gap: 18px; min-height: 66px; }
.dk-mark { text-decoration: none; color: #fff; display: flex; flex-direction: column; margin-right: auto; }
.dk-mark-name { font-size: 1.32rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.dk-mark-sub {
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: #f0a468;
}
.dk-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.dk-nav a { color: #e8e6e2; text-decoration: none; font-size: .95rem; font-weight: 500; }
.dk-nav a:hover, .dk-nav a.on { color: #ffb572; }
.dk-chip {
  background: var(--orange-hi); color: #fff; text-decoration: none; font-weight: 600;
  padding: 9px 16px; border-radius: var(--r); font-size: .9rem; white-space: nowrap;
}
.dk-chip:hover { background: #fff; color: var(--band); }
.dk-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.dk-burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

/* == hero == */
.dk-hero { background: var(--card); border-bottom: 1px solid var(--line); padding: 34px 0 30px; }
.dk-hero-in { display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: center; }
.dk-eyebrow {
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
  font-size: .73rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  margin: 0 0 10px;
}
#manifest-line {
  border-left: 4px solid var(--orange);
  background: var(--orange-t);
  padding: 13px 16px; margin: 0 0 18px; font-weight: 600; font-size: 1.03rem;
}
.dk-chips { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.dk-chips li {
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--r);
  padding: 6px 11px; font-size: .84rem;
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
}
.dk-cta {
  display: inline-flex; align-items: center; gap: 9px; background: var(--orange); color: #fff;
  text-decoration: none; font-weight: 700; font-size: 1.02rem; padding: 14px 24px;
  border-radius: var(--r); min-height: 48px; border-bottom: 3px solid #7d3403;
}
.dk-cta:hover { background: var(--orange-hi); }
.dk-cta-2 { background: var(--band); border-bottom-color: #000; }
.dk-hero-img { position: relative; }
.dk-hero-img img { margin: 0 auto; }
.dk-stamp {
  position: absolute; right: 4px; top: 6px; width: 96px; height: 96px; border-radius: 50%;
  border: 2px solid var(--red); color: var(--red); background: #fff;
  display: grid; place-content: center; text-align: center; transform: rotate(-9deg);
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
  font-size: .62rem; line-height: 1.35; letter-spacing: .04em; text-transform: uppercase;
}

/* == sections == */
section { padding: 34px 0; }
section > .wrap > h2 { margin-bottom: 6px; }
.dk-lead { color: var(--slate); max-width: 62ch; }
.dk-alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dk-dark { background: var(--band); color: #eceae6; }
.dk-dark h2, .dk-dark h3 { color: #fff; }
.dk-dark a { color: #ffb572; }

/* == steps == */
.dk-steps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); counter-reset: s; }
.dk-steps li {
  background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--orange);
  border-radius: var(--r); padding: 16px 16px 14px; counter-increment: s;
}
.dk-steps li::before {
  content: "Step " counter(s);
  display: block; margin-bottom: 6px;
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
}
.dk-steps h3 { font-size: 1.02rem; }
.dk-steps p { margin: 0; font-size: .93rem; color: var(--slate); }

/* == package table == */
.dk-tablewrap { margin: 18px 0 14px; }
.dk-table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); }
.dk-table caption {
  caption-side: top; text-align: left; padding: 0 0 10px; color: var(--slate); font-size: .9rem;
}
.dk-table th, .dk-table td { padding: 14px 12px; border-bottom: 1px solid var(--line-2); text-align: left; vertical-align: middle; }
.dk-table thead th {
  background: var(--band); color: #fff; font-size: .72rem; letter-spacing: .13em;
  text-transform: uppercase; font-family: "DM Mono", ui-monospace, Consolas, monospace; font-weight: 500;
  border-bottom: 0;
}
.dk-pk { display: block; font-size: 1.12rem; font-weight: 700; }
.dk-supply { display: block; font-size: .82rem; color: var(--slate); }
.dk-per, .dk-total {
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
  font-size: 1.28rem; font-weight: 500; display: block;
}
.dk-table s { color: var(--slate); font-size: .84rem; }
.dk-save { display: block; color: var(--red); font-weight: 700; }
.dk-pct { display: block; font-size: .78rem; color: var(--slate); }
.dk-badge {
  display: inline-block; margin-top: 7px; background: var(--red); color: #fff;
  font-family: "DM Mono", ui-monospace, Consolas, monospace;
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; padding: 4px 9px; border-radius: 2px;
}
.dk-row.dk-best { background: var(--orange-t); }
.dk-row.dk-best th[scope="row"] { box-shadow: inset 4px 0 0 var(--orange); }
.dk-go {
  display: inline-block; background: var(--orange); color: #fff; text-decoration: none;
  font-weight: 700; padding: 12px 16px; border-radius: var(--r); min-height: 46px;
  line-height: 22px; white-space: nowrap; border-bottom: 3px solid #7d3403; font-size: .96rem;
}
.dk-go:hover { background: var(--orange-hi); }
.dk-note { font-size: .88rem; color: var(--slate); max-width: 74ch; }

/* == generic cards / lists == */
.dk-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
.dk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.dk-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.dk-card h3 { margin-bottom: 6px; }
.dk-card p { margin: 0; font-size: .95rem; color: var(--slate); }
.dk-callout {
  background: var(--card); border: 2px solid var(--orange); border-radius: var(--r);
  padding: 16px 18px; margin-top: 16px;
}
.dk-callout p:last-child { margin-bottom: 0; }
.dk-num { font-family: "DM Mono", ui-monospace, Consolas, monospace; font-weight: 500; }
ul.dk-ticks { list-style: none; margin: 14px 0 0; padding: 0; }
ul.dk-ticks li { position: relative; padding: 0 0 8px 26px; }
ul.dk-ticks li::before {
  content: ""; position: absolute; left: 4px; top: .55em; width: 9px; height: 9px;
  background: var(--orange); border-radius: 1px;
}

/* == facts table == */
.dk-facts { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); margin-top: 16px; }
.dk-facts th, .dk-facts td { padding: 11px 14px; border-bottom: 1px solid var(--line-2); text-align: left; font-size: .95rem; }
.dk-facts th { width: 34%; font-weight: 600; background: #fbfaf8; }
.dk-facts td { font-family: "DM Mono", ui-monospace, Consolas, monospace; font-size: .9rem; }

/* == timeline == */
.dk-time { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dk-time li { border-top: 3px solid var(--orange); background: var(--card); border-radius: 0 0 var(--r) var(--r); padding: 12px 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.dk-time b { display: block; font-family: "DM Mono", ui-monospace, Consolas, monospace; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.dk-time span { font-size: .92rem; color: var(--slate); }

/* == proof == */
.dk-proof-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px; }
.dk-score { font-family: "DM Mono", ui-monospace, Consolas, monospace; font-size: 2.1rem; font-weight: 500; }
.dk-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.dk-quotes figure { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 15px; }
.dk-quotes blockquote { margin: 0 0 10px; font-size: .95rem; }
.dk-quotes figcaption { font-size: .82rem; color: var(--slate); }
.dk-ver { color: var(--orange); font-weight: 600; }

/* == qa / faq == */
.dk-qa { margin-top: 18px; }
.dk-qa h3 { margin-top: 20px; }
details.dk-d { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 8px; }
details.dk-d summary { padding: 13px 15px; cursor: pointer; font-weight: 600; list-style: none; }
details.dk-d summary::-webkit-details-marker { display: none; }
details.dk-d summary::after { content: "+"; float: right; color: var(--orange); font-weight: 700; }
details.dk-d[open] summary::after { content: "\2013"; }
details.dk-d .dk-a { padding: 0 15px 12px; }
details.dk-d .dk-a p:last-child { margin-bottom: 0; }

/* == refs == */
.dk-refs { font-size: .88rem; color: var(--slate); }
.dk-refs ol { margin: 10px 0 0; padding-left: 20px; }
.dk-refs li { margin-bottom: 5px; }
sup.dk-cite a { text-decoration: none; font-family: "DM Mono", ui-monospace, Consolas, monospace; }

/* == final band == */
.dk-final { background: var(--band); color: #fff; text-align: center; padding: 38px 0; }
.dk-final h2 { color: #fff; }
.dk-final p { color: #cfccc7; max-width: 60ch; margin-left: auto; margin-right: auto; }
.dk-final .dk-cta { background: var(--orange-hi); border-bottom-color: #7d3403; }
.dk-badges { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-family: "DM Mono", ui-monospace, Consolas, monospace; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: #b8b4ae; }

/* == breadcrumb == */
.dk-crumb { padding: 14px 0 0; }
.dk-crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; font-size: .82rem; color: var(--slate); }
.dk-crumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }

/* == footer == */
.dk-foot { background: var(--band); color: #b8b4ae; margin-top: 10px; padding: 34px 0 26px; font-size: .9rem; }
.dk-foot-top { display: grid; grid-template-columns: 1.4fr 1.6fr; gap: 28px; }
.dk-fname { font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.dk-fco { font-family: "DM Mono", ui-monospace, Consolas, monospace; font-size: .78rem; line-height: 1.75; }
.dk-fnav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dk-fcol h2 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: #ffb572; font-family: "DM Mono", ui-monospace, Consolas, monospace; font-weight: 500; }
.dk-fcol ul { list-style: none; margin: 0; padding: 0; }
.dk-fcol li { margin-bottom: 7px; }
.dk-foot a { color: #e8e6e2; text-decoration: none; }
.dk-foot a:hover { color: #ffb572; text-decoration: underline; }
.dk-foot-legal { border-top: 1px solid #2a2d33; margin-top: 26px; padding-top: 18px; font-size: .8rem; line-height: 1.7; }
.dk-pay, .dk-copy, .dk-updated { font-family: "DM Mono", ui-monospace, Consolas, monospace; font-size: .74rem; }
.dk-updated { color: #85817b; }

/* == floating dispatch tag == */
.dk-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 30;
  background: var(--orange); color: #fff; text-decoration: none; font-weight: 700;
  padding: 12px 16px; border-radius: var(--r); border-bottom: 3px solid #7d3403;
  font-size: .92rem; display: flex; align-items: center; gap: 10px; max-width: 60vw;
  box-shadow: 0 6px 18px rgba(22, 24, 28, .22);
  animation: dk-in .22s ease-out;
}
.dk-fab[hidden] { display: none; }
.dk-fab-arrow { font-size: 1.3rem; line-height: 1; }
@keyframes dk-in { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .dk-fab { animation: none; } }

/* == legal pages == */
.dk-legal { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; margin: 20px 0 30px; }
.dk-legal h2 { font-size: 1.2rem; margin-top: 24px; }
.dk-legal h2:first-of-type { margin-top: 6px; }
.dk-legal ul { padding-left: 20px; }

/* == responsive == */
@media (max-width: 900px) {
  .dk-hero-in { grid-template-columns: 1fr; }
  .dk-hero-img { order: -1; }
  .dk-stamp { display: none; }
  .dk-steps, .dk-time, .dk-quotes, .dk-grid-3 { grid-template-columns: 1fr; }
  .dk-foot-top { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  body { font-size: 16px; }
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.34rem; }
  .dk-grid { grid-template-columns: 1fr; }
  .dk-fnav { grid-template-columns: repeat(2, 1fr); }
  .dk-burger { display: block; }
  .dk-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--band);
    border-top: 1px solid #2a2d33; padding: 10px 18px 16px;
    visibility: hidden; opacity: 0; transition: opacity .18s ease, visibility 0s linear .18s;
  }
  .dk-nav.open { visibility: visible; opacity: 1; transition: opacity .18s ease, visibility 0s; }
  .dk-nav ul { flex-direction: column; gap: 0; }
  .dk-nav li { border-bottom: 1px solid #2a2d33; }
  .dk-nav a { display: block; padding: 11px 0; }
  .dk-chip { margin-left: auto; }
  /* dispatch slips: each package row becomes a bordered slip */
  .dk-table, .dk-table tbody, .dk-table tr, .dk-table th, .dk-table td { display: block; }
  .dk-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .dk-table { border: 0; background: none; }
  .dk-table tr.dk-row {
    background: var(--card); border: 1px solid var(--line); border-top: 4px solid var(--band);
    border-radius: var(--r); margin-bottom: 14px; padding: 4px 0;
  }
  .dk-table tr.dk-best { border-top-color: var(--orange); background: var(--orange-t); }
  .dk-table th[scope="row"] { border-bottom: 1px dashed var(--line); box-shadow: none !important; }
  .dk-table td {
    display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px;
    border-bottom: 1px dashed var(--line-2);
  }
  .dk-table td::before {
    content: attr(data-label);
    font-family: "DM Mono", ui-monospace, Consolas, monospace;
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate);
  }
  .dk-table td:last-child { display: block; border-bottom: 0; }
  .dk-table td:last-child::before { display: none; }
  .dk-per, .dk-total { text-align: right; }
  .dk-save, .dk-pct { text-align: right; }
  .dk-go { display: block; text-align: center; }
  .dk-facts th, .dk-facts td { display: block; width: auto; }
  .dk-facts th { border-bottom: 0; padding-bottom: 0; background: none; }
}
