:root {
  --ink: #17171b;
  --muted: #62636c;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --surface-tint: #eff3ff;
  --line: #dedee5;
  --blue: #3156d9;
  --blue-dark: #2545b8;
  --green: #1d6c4a;
  --radius: 18px;
  --shadow: 0 18px 46px rgb(30 31 42 / 9%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid #89a6ff; outline-offset: 3px; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { padding: 20px 0; border-bottom: 1px solid var(--line); }
.site-header .shell, .site-footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 760; text-decoration: none; letter-spacing: -.025em; }
.brand img { width: 34px; height: 34px; border: 1px solid #cfcfd7; border-radius: 9px; }
.site-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; font-size: 14px; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 640; }
.site-nav a:hover { color: var(--ink); }
.eyebrow { margin: 0 0 12px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero { padding: 78px 0 56px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); align-items: center; gap: 54px; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(42px, 6.2vw, 78px); line-height: .98; letter-spacing: -.06em; }
h2 { margin-bottom: 13px; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.06; letter-spacing: -.045em; }
h3 { margin-bottom: 8px; font-size: 20px; letter-spacing: -.025em; }
.lede { max-width: 640px; margin-bottom: 26px; color: #41424a; font-size: 18px; }
.subtle { color: var(--muted); }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 16px; border: 1px solid var(--blue); border-radius: 10px; background: var(--blue); color: #fff; font-size: 14px; font-weight: 750; text-decoration: none; }
.button:hover { border-color: var(--blue-dark); background: var(--blue-dark); color: #fff; }
.button.secondary { border-color: var(--line); background: var(--surface); color: var(--ink); }
.button.secondary:hover { border-color: #bdbec9; background: #f7f7fa; color: var(--ink); }
.hero-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.product-specimen { overflow: hidden; border: 1px solid #cfd5ea; border-radius: 20px; background: #fafbff; box-shadow: var(--shadow); }
.specimen-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid #dce0ee; background: #fff; color: #656674; font-size: 12px; }
.specimen-dot { width: 8px; height: 8px; border-radius: 50%; background: #c5c8d5; }
.shelf-ui { padding: 18px; }
.shelf-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.shelf-title { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 800; letter-spacing: -.025em; }
.shelf-title img { width: 26px; height: 26px; border: 1px solid #d2d4dd; border-radius: 7px; }
.pill { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 8px; border-radius: 999px; background: #eaf6ef; color: var(--green); font-size: 11px; font-weight: 760; }
.shelf-tabs { display: flex; gap: 9px; margin-bottom: 12px; font-size: 12px; font-weight: 700; }
.shelf-tabs span:first-child { padding-bottom: 6px; border-bottom: 2px solid var(--blue); color: var(--blue); }
.media-row { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid #e5e7ef; }
.media-icon { display: grid; width: 42px; height: 34px; place-items: center; border-radius: 8px; background: #e4eafd; color: var(--blue); font-size: 12px; font-weight: 800; }
.media-name { overflow: hidden; font-size: 12px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.media-meta { color: var(--muted); font-size: 11px; }
.media-action { padding: 6px 8px; border: 1px solid #cdd4ee; border-radius: 7px; color: var(--blue); background: #fff; font-size: 11px; font-weight: 760; }
.section { padding: 70px 0; }
.section.tinted { background: var(--surface-tint); }
.section-copy { max-width: 680px; }
.product-grid, .feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-card, .feature-card, .boundary-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 26px; }
.product-card { display: flex; flex-direction: column; min-height: 332px; box-shadow: 0 8px 24px rgb(35 36 48 / 5%); }
.product-kicker { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; color: var(--muted); font-size: 13px; font-weight: 720; }
.product-mark { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--blue); font-weight: 850; }
.product-mark img { width: 100%; height: 100%; border-radius: 9px; }
.product-card p { color: #4c4d56; }
.product-card .text-link { margin-top: auto; font-weight: 750; text-decoration: none; }
.feature-card { padding: 20px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.boundary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.boundary-card { padding: 20px; }
.boundary-card strong { display: block; margin-bottom: 5px; font-size: 14px; }
.boundary-card span { color: var(--muted); font-size: 13px; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.callout h2 { margin-bottom: 6px; font-size: 30px; }
.callout p { margin: 0; color: #d2d2d8; }
.callout .button { flex: none; border-color: #fff; background: #fff; color: var(--ink); }
.callout .button:hover { background: #eaebf3; }
.site-footer { padding: 30px 0 42px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.legal-page { padding: 54px 0 72px; }
.legal-page .legal-copy { max-width: 820px; }
.legal-page section { margin-top: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.legal-page table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-page th, .legal-page td { padding: 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-page th { background: #f4f5f9; }
.legal-page code { padding: 1px 5px; border-radius: 4px; background: #edf0f8; font-size: .9em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 620px); }
  .site-header .shell, .site-footer .shell { align-items: flex-start; flex-direction: column; }
  .site-nav { gap: 12px; }
  .hero { padding: 52px 0 36px; }
  .hero-grid, .product-grid, .feature-grid, .boundary-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .section { padding: 48px 0; }
  .callout { align-items: flex-start; flex-direction: column; }
}

/* ComputedKit mirrors the extension: ink-first controls, quiet panels, blue actions,
   and a coral selection marker. These rules are deliberately scoped so ClipHutch keeps
   its own media-shelf presentation. */
.computedkit-page { background: #fff; }
.computedkit-page .site-header { border-color: #e4e4e7; background: #fff; }
.computedkit-brand { display: inline-flex; align-items: center; gap: 10px; color: #18181b; font-size: 16px; font-weight: 760; letter-spacing: -.03em; text-decoration: none; }
.computedkit-brand img { width: 34px; height: 34px; border-radius: 9px; }
.computedkit-brand small { display: block; margin-top: 1px; color: #71717a; font-size: 10px; font-weight: 670; letter-spacing: .04em; text-transform: uppercase; }
.computedkit-hero { padding: 26px 0 60px; background: #fff; color: #fdfcf9; }
.computedkit-hero-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr); align-items: center; gap: clamp(34px, 4.5vw, 62px); overflow: hidden; border-radius: 26px; padding: clamp(32px, 5vw, 62px); background: radial-gradient(circle at 26% 6%, #29292d 0, #18181b 44%, #141416 100%); box-shadow: 0 22px 60px rgb(24 24 27 / 16%); }
.computedkit-eyebrow { margin: 0 0 12px; color: #ff8777; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.computedkit-hero-label { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; color: #fff; font-size: 13px; font-weight: 760; letter-spacing: -.015em; text-transform: none; }
.computedkit-hero-label img { width: 28px; height: 28px; border-radius: 7px; }
.computedkit-hero-label em { border-left: 1px solid #52525b; padding-left: 9px; color: #a1a1aa; font-size: 11px; font-style: normal; font-weight: 650; letter-spacing: .02em; }
.computedkit-intro h1 { max-width: 470px; margin-bottom: 19px; color: #fffdf9; font-size: clamp(44px, 4.8vw, 68px); line-height: .98; letter-spacing: -.065em; }
.computedkit-lede { max-width: 465px; margin-bottom: 26px; color: #d4d4d8; font-size: 17px; line-height: 1.55; }
.computedkit-button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 7px; padding: 10px 15px; font: inherit; font-size: 14px; font-weight: 750; text-decoration: none; cursor: pointer; }
.computedkit-button.light { border-color: #fff; background: #fff; color: #18181b; }
.computedkit-button.light:hover { border-color: #e4e4e7; background: #f4f4f5; color: #18181b; }
.computedkit-button.ghost { border-color: #71717a; background: transparent; color: #fff; }
.computedkit-button.ghost:hover { border-color: #fff; background: #27272a; color: #fff; }
.computedkit-note { display: flex; max-width: 520px; align-items: flex-start; gap: 9px; margin: 18px 0 0; color: #c7c7cc; font-size: 12px; line-height: 1.5; }
.computedkit-note-dot { width: 8px; height: 8px; flex: 0 0 auto; margin-top: 5px; border-radius: 50%; background: #ff5c48; box-shadow: 0 0 0 4px rgb(255 92 72 / 16%); }
.computedkit-note-copy { display: block; }
.computedkit-note strong { color: #fff; }
.computedkit-specimen { display: grid; min-height: 476px; grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr); overflow: hidden; border: 1px solid #3f3f46; border-radius: 16px; box-shadow: 0 24px 70px rgb(0 0 0 / 34%); background: #fff; color: #18181b; }
.computedkit-canvas { min-width: 0; padding: 24px; background: #171717; color: #fdfcf9; }
.demo-chip { display: inline-flex; border: 1px solid #71717a; border-radius: 999px; padding: 5px 10px; font-size: 10px; font-weight: 750; }
.computedkit-canvas h2 { margin: 34px 0 8px; color: #fffdf9; font-size: clamp(27px, 3vw, 38px); line-height: 1; letter-spacing: -.055em; }
.computedkit-canvas > p { margin-bottom: 26px; color: #e4e4e7; font-size: 12px; }
.demo-work-grid { display: grid; grid-template-columns: repeat(3, minmax(96px, 1fr)); gap: 12px; }
.demo-work-grid article { display: flex; min-height: 210px; flex-direction: column; justify-content: flex-end; border-radius: 16px; padding: 16px; background: #2a2926; }
.demo-work-grid article:nth-child(2) { background: #31483e; }
.demo-work-grid article:nth-child(3) { background: #51362f; }
.demo-work-grid i { position: relative; width: 42px; height: 42px; margin: 0 0 auto; border-radius: 12px; background: #dfaa6e; }
.demo-work-grid i::after { position: absolute; top: 13px; left: 13px; width: 16px; height: 16px; border: 5px solid #18181b; border-radius: 50%; background: #fffdf9; content: ""; }
.demo-work-grid strong { margin-bottom: 4px; font-size: 16px; letter-spacing: -.04em; }
.demo-work-grid span { color: #deded8; font-size: 11px; }
.computedkit-panel { min-width: 0; padding: 14px; background: #fff; font-size: 10px; }
.computedkit-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-bottom: 1px solid #e4e4e7; padding-bottom: 12px; }
.computedkit-actions span { display: flex; min-height: 36px; align-items: center; justify-content: center; border: 1px solid #d4d4d8; border-radius: 6px; color: #3f3f46; font-size: 10px; font-weight: 700; }
.computedkit-actions span:first-child { border-color: #2f2f35; background: #2f2f35; color: #fff; }
.scan-status { display: flex; align-items: center; gap: 7px; margin: 11px 0 14px; color: #71717a; }
.scan-status b { width: 6px; height: 6px; border-radius: 50%; background: #16733a; }
.mini-pro, .mini-page, .mini-search { border-top: 1px solid #e4e4e7; padding: 12px 0; }
.mini-pro { border-top: 0; }
.mini-label, .mini-page > span, .mini-search > span { display: block; margin-bottom: 5px; color: #71717a; font-size: 8px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.mini-label em { float: right; border: 1px solid #d4d4d8; border-radius: 999px; padding: 1px 6px; color: #71717a; font-size: 8px; font-style: normal; letter-spacing: normal; text-transform: none; }
.mini-pro strong, .mini-page strong, .mini-search strong { display: block; font-size: 12px; }
.mini-pro p { margin: 7px 0 9px; color: #71717a; font-size: 9px; line-height: 1.45; }
.mini-pro button { border: 0; border-radius: 6px; padding: 8px 9px; background: #3157e5; color: #fff; font: inherit; font-size: 10px; font-weight: 800; }
.mini-page div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.mini-page b { font-size: 13px; }
.mini-page small { display: block; margin-top: 2px; color: #71717a; font-size: 8px; font-weight: 500; text-transform: uppercase; }
.mini-search i { display: block; margin-top: 9px; border: 1px solid #d4d4d8; border-radius: 5px; padding: 8px; color: #a1a1aa; font-size: 9px; font-style: normal; }
.computedkit-features { padding: 86px 0; background: #fff; }
.computedkit-section-heading { display: grid; max-width: 740px; gap: 0; margin-bottom: 35px; }
.computedkit-section-heading h2, .computedkit-pro-section h2, .computedkit-support h2 { margin-bottom: 12px; color: #18181b; font-size: clamp(31px, 4vw, 49px); line-height: 1; letter-spacing: -.055em; }
.computedkit-section-heading > p:last-child { margin: 0; color: #71717a; font-size: 17px; }
.computedkit-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid #e4e4e7; background: #e4e4e7; }
.computedkit-feature-card { min-height: 230px; padding: 22px; background: #fff; }
.feature-number { display: block; margin-bottom: 52px; color: #ff5c48; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.computedkit-feature-card h3 { margin-bottom: 8px; font-size: 17px; }
.computedkit-feature-card p { margin: 0; color: #71717a; font-size: 13px; line-height: 1.55; }
.computedkit-pro-section { padding: 80px 0; border-top: 1px solid #e4e4e7; background: #fafafa; }
.computedkit-pro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: 74px; align-items: center; }
.computedkit-pro-lede { max-width: 700px; margin-bottom: 16px; color: #3f3f46; font-size: 18px; line-height: 1.55; }
.computedkit-pro-details { color: #71717a; font-size: 13px; }
.computedkit-button.pro { border-color: #3157e5; background: #3157e5; color: #fff; }
.computedkit-button.pro:hover { border-color: #2444bc; background: #2444bc; color: #fff; }
.computedkit-boundary { display: grid; gap: 16px; border: 1px solid #e4e4e7; border-radius: 12px; padding: 25px; background: #fff; box-shadow: 0 12px 32px rgb(24 24 27 / 5%); }
.computedkit-boundary > img { width: 39px; height: 39px; margin-bottom: 4px; border-radius: 10px; }
.computedkit-boundary > div + div { border-top: 1px solid #e4e4e7; padding-top: 16px; }
.computedkit-boundary strong { font-size: 14px; }
.computedkit-boundary p { margin: 4px 0 0; color: #71717a; font-size: 13px; line-height: 1.5; }
.computedkit-boundary a { border-top: 1px solid #e4e4e7; padding-top: 16px; color: #3157e5; font-size: 13px; font-weight: 750; text-decoration: none; }
.computedkit-boundary a span { float: right; }
.computedkit-boundaries { padding: 0; background: #18181b; color: #fff; }
.computedkit-boundaries .shell { display: grid; grid-template-columns: repeat(3, 1fr); }
.computedkit-boundaries .shell > div { min-height: 218px; padding: 33px 34px; border-right: 1px solid #3f3f46; }
.computedkit-boundaries .shell > div:first-child { border-left: 1px solid #3f3f46; }
.boundary-symbol { display: block; margin-bottom: 44px; color: #ff5c48; font-size: 20px; font-weight: 800; }
.computedkit-boundaries strong { font-size: 15px; }
.computedkit-boundaries p { margin: 5px 0 0; color: #c7c7cc; font-size: 13px; line-height: 1.5; }
.computedkit-support { padding: 82px 0; background: #fff; }
.computedkit-support .shell { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 34px; border: 1px solid #e4e4e7; border-radius: 14px; }
.computedkit-support h2 { font-size: clamp(28px, 3vw, 40px); }
.computedkit-support p:last-child { max-width: 680px; margin: 0; color: #71717a; }
.computedkit-button.dark { flex: none; border-color: #18181b; background: #18181b; color: #fff; }
.computedkit-button.dark:hover { border-color: #2f2f35; background: #2f2f35; color: #fff; }
.computedkit-footer { border-top: 1px solid #e4e4e7; }

@media (max-width: 960px) {
  .computedkit-hero-grid { grid-template-columns: 1fr; }
  .computedkit-intro { max-width: 700px; }
  .computedkit-specimen { max-width: 760px; }
  .computedkit-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .computedkit-pro-grid { gap: 40px; }
}

@media (max-width: 620px) {
  .computedkit-hero { padding: 14px 0 42px; }
  .computedkit-hero-grid { border-radius: 18px; padding: 28px 20px; }
  .computedkit-intro h1 { font-size: clamp(42px, 12.5vw, 52px); }
  .computedkit-specimen { min-height: 0; grid-template-columns: 1fr; }
  .computedkit-canvas { min-height: 350px; }
  .computedkit-panel { display: none; }
  .demo-work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .demo-work-grid article { min-height: 165px; padding: 12px; }
  .demo-work-grid i { width: 36px; height: 36px; border-radius: 10px; }
  .demo-work-grid i::after { top: 10px; left: 10px; width: 16px; height: 16px; }
  .demo-work-grid strong { font-size: 13px; }
  .demo-work-grid span { font-size: 9px; }
  .computedkit-feature-grid, .computedkit-pro-grid, .computedkit-boundaries .shell { grid-template-columns: 1fr; }
  .computedkit-feature-card { min-height: 0; }
  .feature-number { margin-bottom: 24px; }
  .computedkit-boundaries .shell > div, .computedkit-boundaries .shell > div:first-child { min-height: 0; border-right: 0; border-left: 0; border-bottom: 1px solid #3f3f46; }
  .computedkit-boundaries .shell > div:last-child { border-bottom: 0; }
  .boundary-symbol { margin-bottom: 22px; }
  .computedkit-support .shell { align-items: flex-start; flex-direction: column; }
}
