:root {
  --ink: #101116;
  --ink-2: #20222b;
  --paper: #f5f3ed;
  --paper-2: #ece9e0;
  --white: #fffefb;
  --line: #d8d4ca;
  --muted: #6f706f;
  --muted-dark: #a8aab2;
  --accent: #5b4dff;
  --accent-deep: #4538dd;
  --accent-soft: #e9e6ff;
  --green: #168966;
  --green-soft: #ddf3eb;
  --orange: #b86a26;
  --orange-soft: #f5e7d8;
  --shadow: 0 24px 70px rgba(31, 31, 35, 0.13);
  --radius: 18px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100vw - 40px));
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --type-title: clamp(44px, 5vw, 64px);
  --type-subtitle: 22px;
  --type-normal: 15px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--type-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
p { line-height: 1.65; }
h1, h2, h3, h4, h5, h6 { font-size: var(--type-subtitle); }
small { font-size: var(--type-normal); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  transform: translateY(-160%);
  background: var(--white); border: 1px solid var(--ink);
  padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 118px 0; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  background: rgba(245, 243, 237, .87);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 17, 22, .09);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand-lockup, .brand { display: inline-flex; align-items: center; white-space: nowrap; }
.brand-lockup { gap: 10px; }
.brand { gap: 10px; }
.brand-mark {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--ink); color: #fff; border-radius: 8px;
  font-family: var(--mono); font-weight: 800; font-size: var(--type-normal);
  position: relative; overflow: hidden;
}
.brand-mark::after { content: ""; position: absolute; width: 11px; height: 11px; right: -4px; bottom: -4px; background: var(--accent); transform: rotate(45deg); }
.brand-name { font-weight: 790; letter-spacing: -0.025em; font-size: var(--type-subtitle); }
.brand-by { color: var(--muted); font-size: var(--type-normal); border-left: 1px solid var(--line); padding-left: 10px; }
.brand-by:hover { color: var(--accent); }
.primary-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.primary-nav a, .text-button { font-size: var(--type-normal); color: #45464b; transition: color .2s ease; }
.primary-nav a:hover, .text-button:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 18px; margin-left: 8px; }
.text-button, .button-reset { border: 0; background: none; padding: 0; cursor: pointer; }
.mobile-menu-button { display: none; background: none; border: 0; margin-left: auto; width: 38px; height: 38px; padding: 9px; }
.mobile-account-link { display: none; }
.mobile-menu-button span:not(.sr-only) { display: block; height: 1px; background: var(--ink); margin: 6px 0; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: var(--type-normal);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .filter-chip:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(91, 77, 255, .32); outline-offset: 2px;
}
.button-small { min-height: 40px; padding-inline: 16px; }
.button-full { width: 100%; }
.button-primary { background: var(--accent); color: white; box-shadow: 0 10px 22px rgba(91, 77, 255, .2); }
.button-primary:hover { background: var(--accent-deep); box-shadow: 0 14px 30px rgba(91, 77, 255, .28); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: #252630; }
.button-ghost { color: var(--ink); background: rgba(255,255,255,.35); border-color: var(--line); }
.button-ghost:hover { border-color: #aba89f; background: rgba(255,255,255,.7); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { box-shadow: 0 12px 32px rgba(0,0,0,.18); }
.button-ghost-light { color: white; border-color: rgba(255,255,255,.23); }
.button-ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(16,17,22,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(16,17,22,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero::after {
  content: ""; position: absolute; left: -150px; top: -130px; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(91,77,255,.10), transparent 68%); pointer-events: none;
}
.hero-layout {
  position: relative; z-index: 1;
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.04fr .86fr;
  gap: 86px;
  align-items: center;
  padding-block: 88px 96px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; text-transform: uppercase; font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); letter-spacing: .11em; color: #696a6c; margin-bottom: 26px; }
.eyebrow span { color: var(--accent); }
.eyebrow-light { color: rgba(255,255,255,.58); }
.eyebrow-light span { color: #aaa1ff; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: var(--type-title);
  line-height: .98;
  letter-spacing: -.067em;
  font-weight: 760;
}
.hero-lede { max-width: 650px; margin: 28px 0 0; color: #55565b; font-size: var(--type-subtitle); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { margin: 20px 0 0; color: var(--muted); font-size: var(--type-normal); }
.contract-card-wrap { position: relative; }
.contract-glow {
  position: absolute; inset: 14% -12% -9% 8%; background: var(--accent);
  filter: blur(85px); opacity: .18; border-radius: 50%;
}
.contract-card {
  position: relative;
  background: rgba(255,254,251,.93);
  border: 1px solid rgba(16,17,22,.13);
  border-radius: 22px;
  padding: 25px;
  box-shadow: var(--shadow);
}
.contract-card::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(16,17,22,.05); border-radius: 15px; pointer-events: none; }
.contract-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.micro-label { display: block; font-weight: 700; font-size: var(--type-normal); line-height: 1.3; font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contract-header h2 { margin: 7px 0 0; font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.format-pill { display: inline-flex; gap: 6px; align-items: center; padding: 7px 9px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: var(--type-normal); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.contract-title { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; padding: 23px 0; }
.category-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: var(--type-subtitle); line-height: 1; font-family: var(--mono); }
.category-icon-swe { background: var(--accent-soft); color: var(--accent); }
.contract-title p { margin: 0 0 3px; color: var(--muted); font-size: var(--type-normal); }
.contract-title h3 { margin: 0; font-size: var(--type-subtitle); letter-spacing: -.02em; }
.contract-metrics { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.contract-metrics div { padding: 13px; min-width: 0; }
.contract-metrics div:nth-child(odd) { border-right: 1px solid var(--line); }
.contract-metrics div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.contract-metrics span { display: block; color: var(--muted); font-size: var(--type-normal); margin-bottom: 5px; }
.contract-metrics strong { display: block; font-weight: 700; font-size: var(--type-normal); line-height: 1.35; font-family: var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contract-license { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; padding: 22px 0 18px; }
.contract-license p { margin: 6px 0 0; color: var(--muted); font-size: var(--type-normal); line-height: 1.5; }
.contract-license > strong { font-size: var(--type-subtitle); letter-spacing: -.04em; }
.secure-note { display: flex; justify-content: center; align-items: center; gap: 6px; color: var(--muted); font-size: var(--type-normal); margin: 12px 0 0; }

.trust-rail { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-items { min-height: 75px; display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-items > div { display: flex; align-items: center; gap: 9px; padding: 0 20px; border-left: 1px solid var(--line); font-size: var(--type-normal); }
.trust-items > div:last-child { border-right: 1px solid var(--line); }
.trust-index { color: var(--accent); font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 40px; }
.section-heading h2, .standard-copy h2, .narrow-heading h2, .developer-layout h2, .delivery-copy h2, .faq-layout h2, .closing-inner h2 {
  margin: 0; font-size: var(--type-title); line-height: 1.03; letter-spacing: -.055em; font-weight: 750;
}
.section-heading p { max-width: 720px; color: var(--muted); margin: 18px 0 0; font-size: var(--type-normal); }
.inline-link { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 750; font-size: var(--type-normal); white-space: nowrap; border-bottom: 1px solid rgba(91,77,255,.28); padding-bottom: 3px; }
.marketplace { background: var(--paper); }
.catalog-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 18px; }
.search-field { height: 58px; display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 0 15px; transition: border-color .2s, box-shadow .2s; }
.search-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(91,77,255,.08); }
.search-field svg { width: 20px; fill: none; stroke: #77787a; stroke-width: 1.8; }
.search-field input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-field input::placeholder { color: #969792; }
kbd { border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 6px; padding: 4px 7px; color: var(--muted); background: var(--paper); font-weight: 600; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.sort-field { min-width: 190px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; }
.sort-field span { color: var(--muted); font-size: var(--type-normal); }
.sort-field select { height: 100%; border: 0; outline: 0; background: transparent; font-size: var(--type-normal); font-weight: 700; color: var(--ink); cursor: pointer; }
.category-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.filter-chip { border: 1px solid var(--line); background: rgba(255,255,255,.45); color: #55565a; border-radius: 999px; padding: 9px 12px; font-size: var(--type-normal); cursor: pointer; transition: .2s; }
.filter-chip span { margin-left: 6px; color: #92938f; }
.filter-chip:hover { border-color: #aaa79f; }
.filter-chip.active { background: var(--ink); color: white; border-color: var(--ink); }
.filter-chip.active span { color: #b9bbc1; }
.task-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.task-card {
  min-height: 390px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.task-card::after { content: ""; position: absolute; inset: auto -40px -70px auto; width: 140px; height: 140px; border-radius: 50%; background: var(--card-soft, var(--accent-soft)); opacity: .6; transition: transform .3s ease; }
.task-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(32,33,38,.09); border-color: #b9b5aa; }
.task-card:hover::after { transform: scale(1.18); }
.task-card-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; position: relative; z-index: 1; }
.task-category { display: inline-flex; align-items: center; gap: 7px; color: var(--card-accent, var(--accent)); font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); text-transform: uppercase; letter-spacing: .075em; }
.task-category::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--card-accent, var(--accent)); }
.task-id { color: #9a9b99; font-weight: 600; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.task-card h3 { margin: 24px 0 10px; min-height: 50px; font-size: var(--type-subtitle); line-height: 1.18; letter-spacing: -.035em; }
.task-description { margin: 0; color: var(--muted); font-size: var(--type-normal); line-height: 1.58; }
.task-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.task-tags span { background: var(--paper); border: 1px solid #e8e4da; border-radius: 6px; padding: 5px 7px; font-weight: 600; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); color: #626360; }
.task-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 20px 0 0; border-block: 1px solid #e9e5dc; position: relative; z-index: 1; }
.task-facts div { padding: 12px 0; }
.task-facts div:nth-child(odd) { border-right: 1px solid #e9e5dc; padding-right: 10px; }
.task-facts div:nth-child(even) { padding-left: 12px; }
.task-facts span { display: block; font-size: var(--type-normal); color: #999a97; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .08em; }
.task-facts strong { display: block; font-weight: 700; font-size: var(--type-normal); line-height: 1.3; font-family: var(--mono); }
.task-card-bottom { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-top: auto; padding-top: 18px; position: relative; z-index: 1; }
.task-delivery { display: flex; align-items: center; gap: 9px; min-width: 0; }
.delivery-badge { min-width: 38px; height: 30px; flex: 0 0 auto; border-radius: 7px; display: grid; place-items: center; padding-inline: 7px; background: var(--card-soft, var(--accent-soft)); color: var(--card-accent, var(--accent)); font-weight: 800; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); border: 1px solid rgba(0,0,0,.04); }
.delivery-copy-card { min-width: 0; }
.delivery-copy-card strong { display: block; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: var(--type-normal); }
.delivery-copy-card span { display: block; color: var(--muted); font-size: var(--type-normal); margin-top: 3px; font-family: var(--mono); }
.task-price { text-align: right; }
.task-price span { display: block; color: #9a9b98; font-size: var(--type-normal); margin-bottom: 3px; }
.task-price strong { display: block; font-size: var(--type-subtitle); letter-spacing: -.04em; }
.task-card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 16px; position: relative; z-index: 1; }
.task-card-actions .button { min-height: 42px; padding-inline: 13px; font-size: var(--type-normal); }
.icon-button { width: 42px; height: 42px; border-radius: 9px; border: 1px solid var(--line); background: white; display: grid; place-items: center; cursor: pointer; color: #777; transition: .2s; }
.icon-button:hover { color: var(--accent); border-color: var(--accent); }
.empty-state { text-align: center; padding: 70px 20px; border: 1px dashed #bcb8ae; border-radius: 15px; }
.empty-state > span { font-weight: 700; font-size: var(--type-subtitle); line-height: 1; font-family: var(--mono); color: var(--accent); }
.empty-state h3 { margin: 18px 0 6px; }
.empty-state p { color: var(--muted); margin: 0 0 18px; }
.catalog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.catalog-footer p { display: flex; align-items: center; gap: 8px; margin: 0; font-size: var(--type-normal); color: var(--muted); }
.catalog-footer p span { color: var(--orange); font-size: var(--type-normal); }

.standard { background: var(--ink); color: white; position: relative; overflow: hidden; }
.standard::before { content: ""; position: absolute; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; left: -300px; top: -220px; box-shadow: 0 0 0 80px rgba(255,255,255,.02), 0 0 0 160px rgba(255,255,255,.015); }
.standard-layout { position: relative; display: grid; grid-template-columns: .85fr 1fr; gap: 100px; align-items: center; }
.standard-copy p { max-width: 580px; color: var(--muted-dark); font-size: var(--type-normal); margin: 24px 0 32px; }
.passport-card { background: #f7f5ef; color: var(--ink); border-radius: 18px; padding: 25px; box-shadow: 0 32px 90px rgba(0,0,0,.32); }
.passport-top { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.passport-status { background: var(--green-soft); color: var(--green); border: 1px solid #bee2d5; border-radius: 5px; padding: 5px 8px; font-weight: 800; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); letter-spacing: .1em; }
.passport-id { display: grid; grid-template-columns: 68px 1fr; gap: 17px; align-items: center; padding: 22px 0; }
.passport-qr { width: 68px; height: 68px; border: 7px solid var(--ink); background: repeating-conic-gradient(var(--ink) 0 25%, white 0 50%) 50%/16px 16px; box-shadow: inset 0 0 0 5px white; }
.passport-id p { margin: 0 0 5px; font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); color: var(--accent); }
.passport-id h3 { margin: 0 0 7px; font-size: var(--type-subtitle); }
.passport-id > div > span { color: var(--muted); font-weight: 600; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.passport-list { margin: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.passport-list > div { display: grid; grid-template-columns: 130px 1fr auto; gap: 12px; align-items: center; padding: 13px; border-bottom: 1px solid var(--line); }
.passport-list > div:last-child { border-bottom: 0; }
.passport-list dt { font-size: var(--type-normal); font-weight: 800; }
.passport-list dd { margin: 0; color: var(--muted); font-size: var(--type-normal); }
.passport-list span { color: var(--green); font-weight: 900; }
.passport-seal { display: flex; justify-content: flex-end; align-items: center; gap: 7px; padding-top: 18px; color: var(--muted); font-size: var(--type-normal); }
.passport-seal strong { color: var(--ink); }

.narrow-heading { display: block; max-width: 700px; margin-bottom: 48px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.step-card { min-height: 350px; padding: 28px; background: var(--white); border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.step-card:last-child { border-right: 0; }
.featured-step { background: var(--accent); color: white; }
.step-number { align-self: flex-end; font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); color: var(--muted); }
.featured-step .step-number { color: rgba(255,255,255,.55); }
.step-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 15px; margin: 55px 0 25px; background: var(--paper); color: var(--accent); font-weight: 700; font-size: var(--type-subtitle); line-height: 1; font-family: var(--mono); }
.featured-step .step-icon { background: rgba(255,255,255,.14); color: white; }
.step-card h3 { margin: 0 0 10px; font-size: var(--type-subtitle); letter-spacing: -.025em; }
.step-card p { margin: 0; color: var(--muted); font-size: var(--type-normal); }
.featured-step p { color: rgba(255,255,255,.72); }

.developer-section { background: #e9e6df; border-block: 1px solid var(--line); }
.developer-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.developer-layout > div:first-child > p { color: var(--muted); margin: 22px 0 24px; max-width: 520px; }
.compatibility-list { display: flex; flex-wrap: wrap; gap: 7px; }
.compatibility-list span { border: 1px solid #c7c3b9; background: rgba(255,255,255,.4); border-radius: 6px; padding: 7px 9px; font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.code-window { background: #111218; border-radius: 17px; overflow: hidden; box-shadow: 0 28px 70px rgba(25,25,31,.2); border: 1px solid #2c2d35; }
.code-window-bar { height: 45px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid #292b32; }
.code-window-bar span { width: 8px; height: 8px; border-radius: 50%; background: #3c3d44; }
.code-window-bar p { margin: 0 0 0 auto; color: #767780; font-weight: 600; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.code-window pre { margin: 0; padding: 28px; overflow-x: auto; color: #e8e8ea; font-weight: 500; font-size: var(--type-normal); line-height: 1.8; font-family: var(--mono); }
.code-muted { color: #71737d; }
.code-command { color: #9e93ff; }
.code-flag { color: #d7b46b; }
.code-output { color: #6bd4a9; }

.delivery-section { position: relative; overflow: hidden; background: var(--accent); color: white; }
.delivery-orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.delivery-orbit-one { width: 650px; height: 650px; right: -290px; top: -250px; }
.delivery-orbit-two { width: 430px; height: 430px; right: -180px; top: -140px; }
.delivery-layout { position: relative; display: grid; grid-template-columns: .85fr 1fr; gap: 90px; align-items: center; }
.delivery-copy p { max-width: 560px; color: rgba(255,255,255,.72); margin: 24px 0 30px; }
.delivery-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.delivery-steps { border-top: 1px solid rgba(255,255,255,.22); }
.delivery-steps article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.delivery-steps article > span { font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); color: #c7c1ff; padding-top: 4px; }
.delivery-steps h3 { margin: 0 0 7px; font-size: var(--type-subtitle); }
.delivery-steps p { margin: 0; color: rgba(255,255,255,.67); font-size: var(--type-normal); }
.delivery-steps code { font-family: var(--mono); font-size: var(--type-normal); color: white; overflow-wrap: anywhere; }

.faq-layout { display: grid; grid-template-columns: .7fr 1fr; gap: 95px; align-items: start; }
.accordion-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 23px 0; display: flex; justify-content: space-between; gap: 18px; font-weight: 740; font-size: var(--type-normal); }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--accent); font-size: var(--type-subtitle); transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -6px 50px 22px 0; color: var(--muted); font-size: var(--type-normal); }

.closing-cta { padding: 75px 0; background: var(--white); border-top: 1px solid var(--line); }
.closing-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.closing-inner h2 { font-size: var(--type-title); margin-top: 9px; }
.closing-actions { display: flex; gap: 10px; flex-shrink: 0; }

.site-footer { background: var(--ink); color: white; padding: 75px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; padding-bottom: 60px; }
.footer-brand .brand-mark { background: white; color: var(--ink); }
.footer-brand p { color: var(--muted-dark); font-size: var(--type-normal); max-width: 300px; margin: 20px 0; }
.powered-by { display: inline-flex; align-items: center; gap: 6px; color: #b4b5bc; font-size: var(--type-normal); }
.powered-by strong { color: white; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links h3 { margin: 0 0 18px; color: #70727c; font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { display: block; color: #cacbd0; font-size: var(--type-normal); margin: 11px 0; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #292a32; display: flex; justify-content: space-between; padding-top: 22px; color: #747681; font-size: var(--type-normal); }
.footer-bottom p { margin: 0; }

/* Dialogs */
dialog { border: 0; padding: 0; background: transparent; max-width: none; color: var(--ink); }
dialog::backdrop { background: rgba(12,13,18,.65); backdrop-filter: blur(6px); }
.task-dialog { width: min(1020px, calc(100vw - 28px)); max-height: calc(100vh - 28px); }
.dialog-shell { background: var(--paper); border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 35px 120px rgba(0,0,0,.35); }
.dialog-close { position: absolute; z-index: 5; right: 16px; top: 16px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.9); cursor: pointer; color: var(--ink); font-size: var(--type-subtitle); line-height: 1; }
.task-dialog-grid { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 650px; }
.task-detail-main { padding: 36px; overflow-y: auto; max-height: calc(100vh - 28px); }
.task-detail-aside { padding: 70px 30px 30px; background: var(--white); border-left: 1px solid var(--line); }
.detail-heading { padding-right: 45px; }
.detail-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 15px; }
.detail-heading h2 { margin: 0; font-size: var(--type-title); line-height: 1.04; letter-spacing: -.05em; }
.detail-heading > p { color: var(--muted); max-width: 640px; font-size: var(--type-normal); }
.detail-section { padding: 24px 0; border-top: 1px solid var(--line); }
.detail-section h3 { margin: 0 0 12px; font-size: var(--type-normal); }
.deliverable-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.deliverable { border: 1px solid var(--line); border-radius: 10px; background: var(--white); padding: 13px; }
.deliverable span { color: var(--green); font-weight: 900; }
.deliverable strong { display: block; margin: 8px 0 3px; font-size: var(--type-normal); }
.deliverable p { margin: 0; font-size: var(--type-normal); color: var(--muted); line-height: 1.45; }
.detail-table { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.detail-table div { display: grid; grid-template-columns: 145px 1fr; border-bottom: 1px solid var(--line); }
.detail-table div:last-child { border-bottom: 0; }
.detail-table span, .detail-table strong { padding: 11px 13px; font-size: var(--type-normal); }
.detail-table span { color: var(--muted); background: #efede7; }
.detail-table strong { font-family: var(--mono); }
.purchase-card { position: sticky; top: 20px; }
.purchase-package { display: flex; align-items: center; gap: 11px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.package-icon { min-width: 48px; height: 38px; border-radius: 9px; display: grid; place-items: center; padding-inline: 8px; background: var(--accent-soft); color: var(--accent); font-weight: 800; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.purchase-package strong { display: block; font-size: var(--type-normal); }
.purchase-package div span { display: block; color: var(--muted); font-size: var(--type-normal); margin-top: 4px; }
.purchase-price { display: flex; justify-content: space-between; align-items: end; padding: 25px 0 17px; }
.purchase-price span { color: var(--muted); font-size: var(--type-normal); }
.purchase-price strong { font-size: var(--type-subtitle); letter-spacing: -.05em; }
.single-license { border: 1px solid var(--accent); background: var(--accent-soft); border-radius: 10px; padding: 13px; margin-bottom: 18px; }
.single-license strong { display: block; font-size: var(--type-normal); }
.single-license p { margin: 5px 0 0; color: var(--muted); font-size: var(--type-normal); line-height: 1.5; }
.purchase-includes { margin: 18px 0; padding: 15px; background: var(--paper); border-radius: 10px; }
.purchase-includes p { margin: 0 0 8px; font-size: var(--type-normal); font-weight: 800; }
.purchase-includes ul { padding: 0; margin: 0; list-style: none; }
.purchase-includes li { display: flex; gap: 7px; color: var(--muted); font-size: var(--type-normal); margin: 6px 0; }
.purchase-includes li::before { content: "✓"; color: var(--green); font-weight: 900; }
.purchase-note { color: var(--muted); text-align: center; font-size: var(--type-normal); margin: 12px 0 0; }
.checkout-dialog { width: min(500px, calc(100vw - 28px)); }
.checkout-shell { position: relative; background: var(--white); border-radius: 18px; padding: 38px; box-shadow: 0 30px 100px rgba(0,0,0,.32); }
.checkout-lock { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-size: var(--type-subtitle); margin-bottom: 24px; }
.checkout-shell h2 { font-size: var(--type-subtitle); line-height: 1.06; letter-spacing: -.045em; margin: 10px 0 14px; }
.checkout-shell > p { color: var(--muted); font-size: var(--type-normal); }
.checkout-code { padding: 13px; border: 1px solid var(--line); background: var(--paper); border-radius: 9px; margin: 20px 0; }
.checkout-code code { font-weight: 700; font-size: var(--type-normal); line-height: 1; font-family: var(--mono); }
.checkout-help { font-size: var(--type-normal) !important; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; transform: translate(-50%, 150%); opacity: 0; background: var(--ink); color: white; border-radius: 10px; padding: 12px 16px; font-size: var(--type-normal); box-shadow: 0 15px 45px rgba(0,0,0,.2); transition: .3s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 980px) {
  .primary-nav { display: none; position: absolute; left: 20px; right: 20px; top: 70px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 14px; box-shadow: var(--shadow); }
  .primary-nav.open { display: grid; }
  .primary-nav a { padding: 10px; }
  .primary-nav .mobile-account-link { display: block; border-top: 1px solid var(--line); }
  .mobile-menu-button { display: block; }
  .header-actions .text-button { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .contract-card-wrap { max-width: 590px; }
  .trust-items { grid-template-columns: repeat(3, 1fr); }
  .trust-items > div:nth-child(4), .trust-items > div:nth-child(5) { display: none; }
  .task-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-layout, .developer-layout, .delivery-layout, .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .standard-copy { max-width: 680px; }
  .passport-card { max-width: 650px; }
  .step-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-card:last-child { border-bottom: 0; }
  .step-icon { margin-top: 30px; }
  .task-dialog-grid { grid-template-columns: 1fr; }
  .task-detail-main { max-height: none; }
  .task-detail-aside { border-left: 0; border-top: 1px solid var(--line); padding-top: 30px; }
  .purchase-card { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section-pad { padding: 82px 0; }
  .site-header { height: 66px; }
  .header-actions { display: none; }
  .hero-layout { min-height: auto; padding-block: 72px 78px; gap: 48px; }
  .hero h1 { font-size: var(--type-title); }
  .hero-lede { font-size: var(--type-normal); }
  .hero-actions .button { width: 100%; }
  .contract-card { padding: 18px; transform: none; }
  .contract-metrics { grid-template-columns: 1fr; }
  .contract-metrics div:nth-child(odd) { border-right: 0; }
  .contract-metrics div { border-bottom: 1px solid var(--line); }
  .contract-metrics div:last-child { border-bottom: 0; }
  .trust-items { grid-template-columns: 1fr; }
  .trust-items > div { min-height: 52px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-items > div:nth-child(2), .trust-items > div:nth-child(3) { display: none; }
  .section-heading { display: block; }
  .section-heading .inline-link { margin-top: 20px; }
  .section-heading h2, .standard-copy h2, .narrow-heading h2, .developer-layout h2, .delivery-copy h2, .faq-layout h2, .closing-inner h2 { font-size: var(--type-title); }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .search-field kbd { display: none; }
  .sort-field { height: 48px; }
  .category-filter { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .filter-chip { white-space: nowrap; }
  .task-grid { grid-template-columns: 1fr; }
  .task-card { min-height: 370px; }
  .catalog-footer { display: grid; gap: 15px; }
  .standard-layout { gap: 45px; }
  .passport-card { padding: 17px; transform: none; }
  .passport-id { grid-template-columns: 52px 1fr; }
  .passport-qr { width: 52px; height: 52px; }
  .passport-list > div { grid-template-columns: 1fr auto; }
  .passport-list dd { grid-column: 1 / 2; }
  .passport-list span { grid-column: 2; grid-row: 1 / 3; }
  .developer-layout { gap: 35px; }
  .code-window pre { padding: 20px; font-size: var(--type-normal); }
  .delivery-actions .button { width: 100%; }
  .closing-inner { display: grid; }
  .closing-actions { display: grid; width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; gap: 7px; }
  .task-dialog { width: calc(100vw - 12px); max-height: calc(100vh - 12px); }
  .dialog-shell { border-radius: 14px; }
  .task-detail-main { padding: 28px 18px; }
  .task-detail-aside { padding: 28px 18px; }
  .deliverable-list { grid-template-columns: 1fr; }
  .detail-table div { grid-template-columns: 105px 1fr; }
  .checkout-shell { padding: 30px 20px; }
}

/* Catalogue, licence, and checkout additions */
.license-under-buy { display: block; margin: 12px auto 0; color: var(--accent); text-align: center; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.license-under-buy:hover { color: var(--accent-deep); }
.license-acceptance { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; margin: 20px 0; padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); line-height: 1.5; }
.license-acceptance input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.license-acceptance a { color: var(--accent); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.button:disabled { cursor: not-allowed; opacity: .46; transform: none; box-shadow: none; }
.benchmark-score-track { height: 12px; margin: 5px 0 24px; }
.directory-card-bottom > div { display: grid; gap: 4px; }
.directory-card-bottom > div > strong { font-size: var(--type-subtitle); }
.directory-license-link { color: var(--accent); font-size: var(--type-normal); text-decoration: underline; text-underline-offset: 2px; }
.license-callout { background: var(--accent-soft); border-block: 1px solid var(--line); }
.license-callout-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: center; }
.license-callout h2 { margin: 0; font-size: var(--type-title); line-height: 1.03; letter-spacing: -.055em; }
.license-callout p { max-width: 760px; color: #55565b; }
.license-callout-action { display: grid; gap: 12px; justify-items: start; }
.license-callout-action span { color: var(--muted); }

.legal-page { padding: 72px 0 120px; }
.legal-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 76px; align-items: start; }
.legal-summary { position: sticky; top: 110px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.legal-summary h2 { margin: 12px 0; font-size: var(--type-subtitle); line-height: 1.25; }
.legal-summary p { color: var(--muted); }
.legal-source-link { display: block; margin-top: 18px; text-align: center; }
.legal-document { min-width: 0; padding: 46px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.legal-document > h1:first-child { margin-top: 0; font-size: var(--type-title); line-height: 1; letter-spacing: -.055em; }
.legal-document h1 { margin: 62px 0 20px; font-size: var(--type-title); line-height: 1.05; letter-spacing: -.05em; }
.legal-document h2 { margin: 48px 0 16px; padding-top: 12px; border-top: 1px solid var(--line); font-size: var(--type-subtitle); }
.legal-document h3 { margin: 30px 0 12px; }
.legal-document p, .legal-document li { color: #48494d; line-height: 1.72; }
.legal-document code { padding: 2px 5px; border-radius: 4px; background: var(--paper-2); font-family: var(--mono); overflow-wrap: anywhere; }
.legal-document pre { overflow-x: auto; padding: 18px; border-radius: 10px; background: var(--ink); color: white; }
.legal-document blockquote { margin: 22px 0; padding: 5px 20px; border-left: 4px solid var(--accent); background: var(--accent-soft); }
.license-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: 12px; }
.license-table-wrap table { width: 100%; min-width: 680px; border-collapse: collapse; }
.license-table-wrap th, .license-table-wrap td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.license-table-wrap th { background: var(--paper-2); font-family: var(--mono); }
.license-table-wrap tr:last-child td { border-bottom: 0; }
.footer-links span { display: block; margin: 9px 0; color: var(--muted); }

@media (max-width: 980px) {
  .license-callout-grid, .legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .legal-summary { position: static; }
}

@media (max-width: 680px) {
  .legal-page { padding-top: 28px; }
  .legal-document { padding: 25px 18px; }
  .legal-document > h1:first-child, .legal-document h1, .license-callout h2 { font-size: var(--type-title); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


/* V5 permanent task pages */
.task-title-link { position: relative; z-index: 2; }
.task-title-link:hover { color: var(--card-accent, var(--accent)); }
.detail-more-button { margin-top: 14px; }

.task-page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); }
.task-page-hero::after { content: ""; position: absolute; right: -180px; top: -220px; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle, var(--task-soft, var(--accent-soft)), transparent 69%); opacity: .85; pointer-events: none; }
.task-page-hero .shell { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-top: 34px; color: var(--muted); font-size: var(--type-normal); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-hidden="true"] { color: #a6a7a3; }
.task-page-hero-grid { display: grid; grid-template-columns: 1.15fr .62fr; gap: 78px; align-items: start; padding: 76px 0 88px; }
.task-page-intro h1 { margin: 20px 0 24px; max-width: 800px; font-size: var(--type-title); line-height: 1.01; letter-spacing: -.062em; }
.task-page-lede { max-width: 760px; color: #55565b; font-size: var(--type-subtitle); line-height: 1.62; margin: 0; }
.task-page-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.task-page-tags span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,.55); font-family: var(--mono); font-size: var(--type-normal); font-weight: 700; }
.task-hero-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 38px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.54); }
.task-hero-metrics div { min-width: 0; padding: 16px; border-right: 1px solid var(--line); }
.task-hero-metrics div:last-child { border-right: 0; }
.task-hero-metrics span { display: block; color: var(--muted); margin-bottom: 6px; font-size: var(--type-normal); }
.task-hero-metrics strong { display: block; font-family: var(--mono); font-size: var(--type-normal); overflow-wrap: anywhere; }
.task-page-purchase { position: sticky; top: 104px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow); }
.task-page-purchase .purchase-price { border-bottom: 1px solid var(--line); }
.task-page-purchase .purchase-price strong { color: var(--ink); }
.task-page-purchase > p { color: var(--muted); margin: 16px 0; font-size: var(--type-normal); }
.task-page-purchase ul { list-style: none; padding: 0; margin: 18px 0; }
.task-page-purchase li { display: flex; gap: 8px; color: var(--muted); margin: 8px 0; font-size: var(--type-normal); }
.task-page-purchase li::before { content: "✓"; color: var(--green); font-weight: 900; }
.task-page-purchase .secure-note { margin-bottom: 0; }

.task-subnav { position: sticky; top: 74px; z-index: 40; border-bottom: 1px solid var(--line); background: rgba(255,254,251,.93); backdrop-filter: blur(15px); }
.task-subnav .shell { min-height: 58px; display: flex; align-items: center; gap: 26px; overflow-x: auto; }
.task-subnav a { flex: 0 0 auto; color: var(--muted); font-size: var(--type-normal); font-weight: 700; }
.task-subnav a:hover { color: var(--accent); }

.task-content-section { background: var(--paper); }
.task-content-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 76px; align-items: start; }
.task-main-column { min-width: 0; }
.page-section-heading { margin-bottom: 32px; }
.page-section-heading h2 { margin: 0; max-width: 760px; font-size: var(--type-title); line-height: 1.03; letter-spacing: -.055em; }
.page-section-heading p { max-width: 760px; color: var(--muted); margin: 18px 0 0; }
.task-contract-block { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.task-contract-block p { margin: 0; color: #4f5053; font-size: var(--type-subtitle); line-height: 1.62; }
.task-contract-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.task-contract-panel { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.task-contract-panel h3 { margin: 0 0 14px; font-size: var(--type-subtitle); }
.task-contract-panel ul, .failure-list, .package-list { margin: 0; padding-left: 19px; }
.task-contract-panel li, .failure-list li, .package-list li { color: var(--muted); margin: 9px 0; font-size: var(--type-normal); }
.inside-section { background: #ece9e0; border-top: 1px solid var(--line); }
.environment-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.environment-table { width: 100%; min-width: 840px; border-collapse: collapse; }
.environment-table th, .environment-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.environment-table thead th { background: var(--ink); color: white; font-family: var(--mono); font-size: var(--type-normal); }
.environment-table thead th:first-child { width: 21%; }
.environment-table thead th:nth-child(2) { width: 29%; }
.environment-table tbody th { color: var(--task-accent, var(--accent)); font-size: var(--type-normal); }
.environment-table tbody td { color: #55565a; font-size: var(--type-normal); line-height: 1.55; }
.environment-table tbody tr:last-child > * { border-bottom: 0; }
.why-interesting-section { background: var(--paper); border-top: 1px solid var(--line); }
.why-interesting-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; }
.why-interesting-copy { padding: 28px; border: 1px solid var(--line); border-left: 5px solid var(--task-accent, var(--accent)); border-radius: 15px; background: var(--white); }
.why-interesting-copy > p:first-child { margin: 0; color: #44454a; font-size: var(--type-subtitle); line-height: 1.65; }
.editorial-boundary { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: var(--type-normal); }
.passport-panel { position: sticky; top: 154px; background: var(--ink); color: white; border-radius: 18px; padding: 24px; }
.passport-panel h2 { margin: 10px 0 20px; font-size: var(--type-subtitle); }
.passport-definition { margin: 0; border: 1px solid #33353f; border-radius: 12px; overflow: hidden; }
.passport-definition div { display: grid; grid-template-columns: 1fr; gap: 5px; padding: 13px; border-bottom: 1px solid #33353f; }
.passport-definition div:last-child { border-bottom: 0; }
.passport-definition dt { color: #8f919b; font-size: var(--type-normal); }
.passport-definition dd { margin: 0; color: white; font-family: var(--mono); font-size: var(--type-normal); overflow-wrap: anywhere; }
.passport-downloads { display: grid; gap: 9px; margin-top: 18px; }
.passport-downloads a { display: flex; justify-content: space-between; gap: 10px; padding: 11px 12px; border: 1px solid #393b46; border-radius: 9px; color: #d7d8dc; font-size: var(--type-normal); }
.passport-downloads a:hover { border-color: #7770ff; color: white; }

.benchmark-section { background: var(--white); border-block: 1px solid var(--line); }
.prototype-notice { display: flex; gap: 12px; align-items: flex-start; border: 1px solid #ddcba7; background: #fbf2df; border-radius: 12px; padding: 15px; margin: 24px 0 30px; }
.prototype-notice strong { display: block; font-size: var(--type-normal); }
.prototype-notice p { margin: 4px 0 0; color: #6e634f; font-size: var(--type-normal); }
.prototype-notice > span { font-family: var(--mono); font-weight: 800; color: var(--orange); }
.benchmark-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.benchmark-summary-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.benchmark-summary-grid span { display: block; color: var(--muted); font-size: var(--type-normal); }
.benchmark-summary-grid strong { display: block; margin: 9px 0 4px; font-size: var(--type-subtitle); }
.benchmark-summary-grid p { margin: 0; color: var(--muted); font-size: var(--type-normal); }
.benchmark-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.benchmark-table { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--white); }
.benchmark-table th, .benchmark-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: var(--type-normal); }
.benchmark-table thead th { color: var(--muted); background: #f0eee8; font-family: var(--mono); }
.benchmark-table tbody tr:last-child th, .benchmark-table tbody tr:last-child td { border-bottom: 0; }
.benchmark-table tbody th { font-weight: 750; }
.score-cell { display: grid; grid-template-columns: 44px 1fr; gap: 10px; align-items: center; min-width: 190px; }
.score-cell strong { font-family: var(--mono); font-size: var(--type-normal); }
.score-track { height: 8px; background: #e5e2da; border-radius: 999px; overflow: hidden; }
.score-track span { display: block; width: var(--score); height: 100%; background: var(--task-accent, var(--accent)); border-radius: inherit; }
.methodology-card { display: flex; justify-content: space-between; gap: 28px; align-items: center; margin-top: 20px; padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.methodology-card h3 { margin: 0 0 6px; font-size: var(--type-subtitle); }
.methodology-card p { margin: 0; color: var(--muted); }

.failure-section { background: #ece9e0; }
.failure-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 74px; align-items: start; }
.failure-list-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 25px; }
.failure-list { padding-left: 21px; }
.failure-list li { padding-left: 4px; margin: 13px 0; color: #535458; }

.package-section { background: var(--ink); color: white; }
.package-section .page-section-heading p { color: var(--muted-dark); }
.package-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 68px; align-items: start; }
.package-card { border: 1px solid #33353f; border-radius: 15px; padding: 22px; background: #15161d; }
.package-card h3 { margin: 0 0 16px; font-size: var(--type-subtitle); }
.package-list li { color: #b7b9c1; }
.package-code { margin: 0; border: 1px solid #33353f; border-radius: 15px; background: #101116; overflow: hidden; }
.package-code header { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 15px; border-bottom: 1px solid #2c2e38; color: #8d8f98; font-family: var(--mono); font-size: var(--type-normal); }
.package-code pre { margin: 0; padding: 24px; overflow-x: auto; color: #e5e6e9; font-family: var(--mono); font-size: var(--type-normal); line-height: 1.75; }
.package-code code { font-family: inherit; font-size: inherit; }
.copy-button { border: 1px solid #3b3d48; border-radius: 7px; background: #1d1f27; color: white; min-height: 32px; padding: 0 10px; cursor: pointer; font-size: var(--type-normal); }

.related-section { background: var(--paper); }
.related-task-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-task-card { position: relative; overflow: hidden; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.related-task-card::after { content: ""; position: absolute; right: -45px; bottom: -60px; width: 120px; height: 120px; border-radius: 50%; background: var(--card-soft); }
.related-task-card > * { position: relative; z-index: 1; }
.related-task-card h3 { margin: 24px 0 10px; font-size: var(--type-subtitle); }
.related-task-card h3 a:hover { color: var(--card-accent); }
.related-task-card p { color: var(--muted); margin: 0; }
.related-task-bottom { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-top: 24px; }
.related-task-bottom strong { font-size: var(--type-subtitle); }

.directory-hero { padding: 92px 0 70px; border-bottom: 1px solid var(--line); }
.directory-hero h1 { margin: 20px 0; max-width: 900px; font-size: var(--type-title); line-height: 1.01; letter-spacing: -.06em; }
.directory-hero p { max-width: 760px; color: var(--muted); font-size: var(--type-subtitle); }
.directory-section { background: var(--paper); }
.directory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.directory-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.directory-card h2 { margin: 22px 0 10px; font-size: var(--type-subtitle); }
.directory-card > p { color: var(--muted); margin: 0; }
.directory-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 22px 0; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.directory-meta div { padding: 12px; background: var(--paper); }
.directory-meta span { display: block; color: var(--muted); margin-bottom: 4px; font-size: var(--type-normal); }
.directory-meta strong { font-family: var(--mono); font-size: var(--type-normal); }
.directory-card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.directory-card-bottom > strong { font-size: var(--type-subtitle); }

@media (max-width: 980px) {
  .task-page-hero-grid, .task-content-grid, .failure-layout, .package-grid, .why-interesting-grid { grid-template-columns: 1fr; gap: 48px; }
  .task-page-purchase, .passport-panel { position: static; }
  .task-hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .task-hero-metrics div:nth-child(2) { border-right: 0; }
  .task-hero-metrics div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .task-contract-grid { grid-template-columns: 1fr; }
  .related-task-grid { grid-template-columns: 1fr 1fr; }
  .task-subnav { top: 74px; }
}

@media (max-width: 680px) {
  .task-subnav { top: 66px; }
  .breadcrumbs { padding-top: 24px; }
  .task-page-hero-grid { padding: 54px 0 64px; }
  .task-page-lede, .task-contract-block p, .directory-hero p { font-size: var(--type-normal); }
  .task-hero-metrics { grid-template-columns: 1fr; }
  .task-hero-metrics div { border-right: 0; border-bottom: 1px solid var(--line); }
  .task-hero-metrics div:last-child { border-bottom: 0; }
  .task-subnav .shell { gap: 18px; }
  .benchmark-summary-grid, .related-task-grid, .directory-grid { grid-template-columns: 1fr; }
  .methodology-card { display: grid; }
  .directory-meta { grid-template-columns: 1fr; }
  .directory-card-bottom { align-items: end; }
}
