/* Colouroo website. Brand: Plus Jakarta Sans, CMY gradient, soft black/white (2021 guide). */
:root {
  --cyan: #00AEEF;
  --magenta: #EC008C;
  --yellow: #FFF200;
  --ink: #161414;
  --paper: #FAFAFA;
  --white: #FFFFFF;
  --muted: #5B5657;
  --line: #E6E3E3;
  --tile: #F2F1F1;
  /* Text-safe tints: cyan and yellow fail contrast as text on white */
  --link: #B8006D;
  --link-hover: #8F0055;
  --cyan-ink: #006E99;
  --gradient: linear-gradient(90deg, var(--cyan), var(--magenta) 55%, var(--yellow));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(22,20,20,.05), 0 8px 24px rgba(22,20,20,.06);
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--link-hover); }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 6.5vw, 4.6rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 40em; }
.eyebrow {
  display: inline-block; font-weight: 800; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan-ink); margin-bottom: .9rem;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 700px) { .wrap { padding: 0 32px; } }
.section { padding: 72px 0; }
@media (min-width: 900px) { .section { padding: 104px 0; } }
.section.tight { padding-top: 0; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--white); padding: 8px 12px; border-radius: 8px; }
:focus-visible { outline: 3px solid var(--cyan-ink); outline-offset: 3px; border-radius: 6px; }

/* Gradient bar: the print process as a signature */
.cmy-bar { height: 6px; background: var(--gradient); }
.grad-text {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  /* keep yellow end readable: stop earlier */
  background-image: linear-gradient(90deg, #0098D4, var(--magenta) 70%, #F07A1A);
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,250,250,.92); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand img { height: 30px; width: auto; }
.nav-links { display: none; list-style: none; margin: 0; padding: 0; gap: 4px; align-items: center; }
.nav-links a { color: var(--ink); text-decoration: none; padding: 8px 12px; border-radius: 999px; font-weight: 700; font-size: .98rem; }
.nav-links a:hover { background: var(--tile); color: var(--ink); }
.nav-links a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.menu-btn {
  appearance: none; border: 1px solid var(--line); background: var(--white); border-radius: 999px;
  font: inherit; font-weight: 800; padding: 8px 16px; color: var(--ink); cursor: pointer;
}
.btn.nav-cta { display: none; }
@media (min-width: 960px) {
  .nav-links, .btn.nav-cta { display: flex; }
  .menu-btn { display: none; }
}
.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 8px 0 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 4px; font-weight: 800; font-size: 1.15rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; width: 100%; }
@media (min-width: 960px) { .mobile-menu, .mobile-menu.open { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 800; font-size: 1rem; line-height: 1;
  padding: 15px 24px; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 2px solid var(--ink); background: var(--ink); color: var(--paper);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #000; color: var(--white); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.small { padding: 11px 18px; font-size: .95rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Hero */
.hero { padding: 64px 0 56px; position: relative; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 96px 0 88px; } }
.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero h1 { margin-bottom: .35em; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 28px; padding: 0; list-style: none; color: var(--muted); font-weight: 700; font-size: .98rem; }
.hero-proof li::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); margin-right: 8px; vertical-align: 2px; }
.hero-proof li:nth-child(2)::before { background: var(--cyan); }
.hero-proof li:nth-child(3)::before { background: #E8D800; }
.hero-art { position: relative; aspect-ratio: 1 / 1; max-width: 520px; width: 100%; margin: 0 auto; }
.hero-art .stack { position: absolute; inset: 0; }
.hero-tile {
  position: absolute; background: var(--white); border-radius: 22px; box-shadow: var(--shadow);
  border: 1px solid var(--line); overflow: hidden;
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.hero-tile.a { width: 64%; height: 64%; left: 0; top: 6%; background: var(--tile); }
.hero-tile.b { width: 48%; height: 48%; right: 0; top: 0; background: #FDEFF6; }
.hero-tile.c { width: 50%; height: 50%; right: 4%; bottom: 0; background: #E8F6FC; }
.price-chip {
  position: absolute; left: 6%; bottom: 8%; background: var(--ink); color: var(--paper);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow); font-weight: 800; line-height: 1.2;
}
.price-chip small { display: block; font-weight: 700; opacity: .75; font-size: .8rem; }
.price-chip strong { font-size: 1.6rem; }

/* Cards and grids */
.grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .grid.two { grid-template-columns: repeat(2, 1fr); } .grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid.three { grid-template-columns: repeat(3, 1fr); } .grid.four { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 600px) and (max-width: 959px) { .grid.four { grid-template-columns: repeat(2, 1fr); } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card p:last-child { margin-bottom: 0; }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  font-weight: 800; font-size: 1.1rem; color: var(--ink);
}
.i-c { background: #D6F1FC; } .i-m { background: #FCDDEE; } .i-y { background: #FFF9A8; } .i-k { background: var(--ink); color: var(--paper) !important; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); }

.band { background: var(--ink); color: var(--paper); }
.band .lede, .band p { color: #CFCACA; }
.band .eyebrow { color: #7FD6F7; }
.band .card { background: #211E1E; border-color: #332F2F; }
.band .card p { color: #BDB7B7; }
.band a { color: #FF7CC4; }

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.steps > li { counter-increment: step; position: relative; padding: 24px 24px 24px 84px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.steps > li::before {
  content: counter(step); position: absolute; left: 24px; top: 22px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; background: var(--ink); color: var(--paper);
}
.steps > li:nth-child(3n+1)::before { background: var(--cyan-ink); }
.steps > li:nth-child(3n+2)::before { background: var(--link); }
.steps h3 { margin-bottom: .25em; }
.steps p { color: var(--muted); margin: 0; }
.steps p + p { margin-top: .6em; }
.steps .note { font-size: .92rem; background: var(--tile); border-radius: 10px; padding: 10px 14px; margin-top: 12px; color: var(--ink); }

/* Catalogue */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.chip {
  appearance: none; font: inherit; font-weight: 800; font-size: .95rem; padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer;
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.products { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 760px) { .products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .products { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.product { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.product[hidden] { display: none; }
.product .ph { background: var(--tile); aspect-ratio: 1 / 1; }
.product .ph img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.product .body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product .code { font-size: .78rem; font-weight: 800; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.product h3 { font-size: 1.08rem; margin: 0; }
.product .desc { font-size: .9rem; color: var(--muted); margin: 0; }
.product .meta { font-size: .82rem; color: var(--muted); margin: 0; }
.product .foot { margin-top: auto; padding-top: 10px; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.product .price { font-weight: 800; font-size: 1.35rem; line-height: 1; }
.product .price small { display: block; font-size: .72rem; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.swatches { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.sw { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(22,20,20,.18); }
.sw-more { font-size: .75rem; font-weight: 800; color: var(--muted); margin-left: 2px; }
@media (max-width: 520px) {
  .product .desc { display: none; }
  .product .body { padding: 12px 12px 14px; }
  .product .foot { flex-direction: column; align-items: flex-start; }
}
.soon { margin-top: 40px; border: 2px dashed var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; }
.soon p { margin: 0; color: var(--muted); }

/* Pricing */
.price-hero { display: grid; gap: 20px; }
@media (min-width: 900px) { .price-hero { grid-template-columns: repeat(3, 1fr); } }
.big-num { font-size: 3rem; font-weight: 800; line-height: 1; margin: 6px 0 10px; }
.big-num small { font-size: 1rem; color: var(--muted); font-weight: 700; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: .98rem; min-width: 560px; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; }
thead th { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: #FBFAFA; }
tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
td .t-name { font-weight: 800; }
td .t-code { color: var(--muted); font-size: .85rem; margin-left: 6px; }
tr.group td { background: var(--tile); font-weight: 800; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; padding: 10px 18px; }
.fine { font-size: .9rem; color: var(--muted); }

.calc { display: grid; gap: 24px; }
@media (min-width: 900px) { .calc { grid-template-columns: 1fr 1fr; align-items: start; } }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 800; font-size: .95rem; }
.field select, .field input {
  font: inherit; font-weight: 700; padding: 12px 14px; border-radius: 12px; border: 1px solid #CFCACA; background: var(--white); color: var(--ink); width: 100%;
}
.result { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: 28px; }
.result dl { display: grid; grid-template-columns: 1fr auto; gap: 10px 16px; margin: 0; }
.result dt { color: #CFCACA; }
.result dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; font-weight: 800; }
.result .total { border-top: 1px solid #3A3535; padding-top: 14px; margin-top: 6px; font-size: 1.2rem; color: var(--paper); }
.result .profit { font-size: 2.4rem; font-weight: 800; line-height: 1; margin-top: 18px; }
.result .profit.neg { color: #FF7CC4; }

/* FAQ */
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 22px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 800; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--link); }
.faq details[open] summary::after { content: "−"; }
.faq details > div { padding: 0 0 18px; color: var(--muted); }

/* CTA band */
.cta {
  border-radius: 28px; padding: 48px 28px; text-align: center; color: var(--ink);
  background:
    radial-gradient(120% 140% at 0% 0%, #C9EFFD 0%, transparent 55%),
    radial-gradient(120% 140% at 100% 0%, #FDD3EA 0%, transparent 55%),
    radial-gradient(140% 120% at 50% 120%, #FFF8A0 0%, transparent 60%),
    var(--white);
  border: 1px solid var(--line);
}
@media (min-width: 900px) { .cta { padding: 72px 48px; } }
.cta .btn-row { justify-content: center; }

/* Page header */
.page-head { padding: 56px 0 24px; }
@media (min-width: 900px) { .page-head { padding: 88px 0 32px; } }

/* Footer */
.site-footer { background: var(--ink); color: #CFCACA; padding: 56px 0 32px; margin-top: 0; }
.foot-grid { display: grid; gap: 32px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img { height: 28px; width: auto; margin-bottom: 14px; }
.site-footer h4 { color: var(--paper); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-footer a { color: #CFCACA; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.foot-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid #332F2F; font-size: .88rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }

.about-face { width: 120px; margin-bottom: 20px; }
.stat-row { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; }
.stat strong { display: block; font-size: 1.9rem; line-height: 1.1; }
.stat span { color: var(--muted); font-size: .92rem; }
