/* Cutwise AI website. One stylesheet for every page. */

@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0b0c;
  --bg-2: #0f1012;
  --surface: #141518;
  --surface-2: #1a1b1f;
  --line: #25262a;
  --line-2: #34353b;
  --ink: #f3f0ea;
  --ink-2: #b4afa6;
  --ink-3: #8c887f;
  --brass: #c9a46b;
  --brass-2: #e2c28f;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --max: 1180px;
  --gutter: 20px;
  --radius: 22px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
svg { display: block; }
a { color: var(--brass-2); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 6px; }
[id] { scroll-margin-top: 84px; }
::selection { background: var(--brass); color: var(--bg); }

.skip { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 12px; border-radius: 8px; z-index: 20; }
.skip:focus { left: 8px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 720px) { :root { --gutter: 32px; } }

/* ---------- Logo ---------- */
.mark {
  position: relative; flex: none; display: inline-block;
  width: 1em; height: 1em; font-size: 32px;
  border-radius: .27em; background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line-2);
  overflow: hidden;
}
.mark-c {
  position: absolute; inset: 0; width: 100%; height: 100%;
  fill: var(--ink); transition: transform .5s var(--ease);
}
.brand:hover .mark-c { transform: scale(1.06); }
.mark-xl { font-size: 76px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.wordmark { font: 600 23px/1 var(--serif); letter-spacing: -.02em; display: inline-flex; align-items: flex-start; }
.wordmark .ai { font: 700 10.5px/1 var(--sans); letter-spacing: .14em; color: var(--brass); margin: 2px 0 0 5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(11, 11, 12, .78); backdrop-filter: saturate(150%) blur(14px); -webkit-backdrop-filter: saturate(150%) blur(14px); border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink-2); text-decoration: none; font-size: 15px; transition: color .2s; }
.nav a:hover { color: var(--ink); }
.nav .nav-cta { color: var(--bg); background: var(--ink); padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.nav .nav-cta:hover { background: #fff; color: var(--bg); }
@media (max-width: 860px) { .nav .hide-sm { display: none; } .nav { gap: 18px; } }
@media (max-width: 400px) { .nav .hide-xs { display: none; } }

/* ---------- Buttons and badge ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 600; font-size: 16px; text-decoration: none; border: 1px solid transparent; transition: border-color .2s, background .2s, color .2s; }
.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); background: var(--surface); }

.store-badge { position: relative; display: inline-block; line-height: 0; border-radius: 10px; }
.store-badge img { height: 54px; width: auto; }
a.store-badge { transition: transform .25s var(--ease); }
a.store-badge:hover { transform: translateY(-2px); }
.store-badge .soon {
  position: absolute; top: -9px; right: -10px; line-height: 1;
  background: var(--brass); color: var(--bg);
  font: 700 10px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 8px; border-radius: 999px; box-shadow: 0 0 0 3px var(--bg);
}

/* ---------- Type ---------- */
h1, h2, h3 { margin: 0; }
h2 { font: 600 clamp(34px, 5vw, 58px)/1.03 var(--serif); letter-spacing: -.03em; }
h3 { font-size: 19px; line-height: 1.3; letter-spacing: -.01em; font-weight: 650; }
.eyebrow { margin: 0 0 16px; color: var(--brass); font: 600 12.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.intro { color: var(--ink-2); font-size: 18px; margin: 18px 0 0; max-width: 56ch; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 48px 0 80px; overflow: hidden; }
.hero .glow {
  position: absolute; right: -10%; top: -6%; width: 760px; height: 760px; max-width: 120vw;
  background: radial-gradient(closest-side, rgba(201, 164, 107, .16), rgba(201, 164, 107, .05) 55%, transparent 75%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 56px; align-items: center; }
.hero-title { font: 600 clamp(50px, 7.6vw, 96px)/.96 var(--serif); letter-spacing: -.04em; margin: 0; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-title .line > span { display: inline-block; animation: rise 1s var(--ease) both; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
.hero-title em { font-style: normal; color: var(--brass); }
@keyframes rise { from { transform: translateY(105%); } to { transform: none; } }
.lead { font-size: clamp(17px, 1.9vw, 19.5px); color: var(--ink-2); max-width: 46ch; margin: 26px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px 16px; align-items: center; }
.trust { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--ink-3); font-size: 14.5px; }
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.hero-demo { position: relative; display: flex; flex-direction: column; align-items: center; }
@media (max-width: 900px) {
  .hero { padding: 28px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero .glow { right: -40%; top: 34%; }
}

/* ---------- Phone demo ---------- */
.phone {
  --step: 4s;
  position: relative; width: min(312px, 82vw); aspect-ratio: 9 / 19.2;
  padding: 11px; border-radius: 52px;
  background: linear-gradient(150deg, #2b2c31, #111215 38%, #1c1d21 70%, #0e0f11);
  box-shadow: inset 0 0 0 1px #3c3d43, inset 0 0 0 3px #0a0a0b, 0 50px 100px -30px rgba(0, 0, 0, .85), 0 30px 60px -40px rgba(201, 164, 107, .25);
}
.phone::before, .phone::after { content: ""; position: absolute; width: 3px; border-radius: 3px 0 0 3px; background: #2a2b30; left: -2px; }
.phone::before { top: 22%; height: 9%; }
.phone::after { top: 34%; height: 9%; }
.phone-screen { position: relative; height: 100%; border-radius: 42px; overflow: hidden; background: #09090a; display: flex; flex-direction: column; isolation: isolate; }
.ph-status { position: absolute; z-index: 5; top: 0; left: 0; right: 0; height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 4px 28px 0 30px; font: 600 13px/1 var(--sans); color: #fff; }
.ph-island { position: absolute; left: 50%; top: 11px; transform: translateX(-50%); width: 92px; height: 27px; border-radius: 20px; background: #000; }
.ph-icons { display: flex; gap: 4px; align-items: flex-end; }
.ph-icons i { display: block; width: 4px; background: #fff; border-radius: 1px; }
.ph-icons i:nth-child(1) { height: 5px; } .ph-icons i:nth-child(2) { height: 8px; } .ph-icons i:nth-child(3) { height: 11px; }

.ph-photo { position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; }
.ph-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.ph-photo::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 30%; background: linear-gradient(rgba(9, 9, 10, .55), transparent); z-index: 2; pointer-events: none; }
.ph-photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%; background: linear-gradient(transparent, #09090a); z-index: 2; pointer-events: none; }
.ph-after { clip-path: inset(0 0 0 100%); transition: clip-path 1.2s var(--ease); }
[data-step="preview"] .ph-after { clip-path: inset(0 0 0 0); }
.ph-base { transform: scale(1.04); transition: transform 6s linear; }
[data-step="scan"] .ph-base { transform: scale(1); }

.ph-scan { position: absolute; inset: 0; z-index: 3; opacity: 0; transition: opacity .5s; }
[data-step="scan"] .ph-scan { opacity: 1; }
.ph-scan svg { position: absolute; inset: 20% 16% 14%; width: 68%; height: 66%; overflow: visible; }
.ph-scan ellipse { fill: none; stroke: var(--brass-2); stroke-width: .6; vector-effect: non-scaling-stroke; stroke-dasharray: 3 3; opacity: .9; }
[data-step="scan"] .ph-scan ellipse { animation: dash 6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -60; } }
.ph-scanline { position: absolute; left: 8%; right: 8%; top: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--brass-2), transparent); box-shadow: 0 0 18px 3px rgba(226, 194, 143, .45); opacity: 0; }
[data-step="scan"] .ph-scanline { animation: scan 2.2s var(--ease) infinite; }
@keyframes scan { 0% { top: 12%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 82%; opacity: 0; } }
.ph-corner { position: absolute; width: 22px; height: 22px; border: 2px solid rgba(255, 255, 255, .85); }
.ph-corner.c1 { top: 24%; left: 10%; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.ph-corner.c2 { top: 24%; right: 10%; border-left: 0; border-bottom: 0; border-top-right-radius: 8px; }
.ph-corner.c3 { bottom: 20%; left: 10%; border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.ph-corner.c4 { bottom: 20%; right: 10%; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }

.ph-chip {
  position: absolute; z-index: 4; left: 14px;
  padding: 7px 11px; border-radius: 999px; font: 600 11.5px/1 var(--sans);
  background: rgba(10, 10, 11, .66); color: var(--ink); border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(6px); transition: opacity .45s, transform .45s var(--ease);
}
.ph-chip::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #7bd88f; margin-right: 7px; vertical-align: 1px; }
.ph-chip-1 { top: 58px; }
.ph-chip-2 { top: 92px; }
.ph-chip-2::before { background: var(--brass); }
[data-step="scan"] .ph-chip-1 { opacity: 1; transform: none; transition-delay: .7s; }
[data-step="scan"] .ph-chip-2 { opacity: 1; transform: none; transition-delay: 1.8s; }
[data-step="match"] .ph-chip-2 { opacity: 1; transform: none; top: 58px; }
.ph-ai { position: absolute; z-index: 4; top: 58px; right: 14px; padding: 6px 10px; border-radius: 8px; font: 700 10px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; background: rgba(10, 10, 11, .7); color: var(--brass-2); border: 1px solid rgba(201, 164, 107, .35); opacity: 0; transition: opacity .4s .9s; }
[data-step="preview"] .ph-ai { opacity: 1; }

.ph-sheet { position: relative; z-index: 4; flex: 0 0 47%; margin-top: -26px; border-radius: 26px 26px 0 0; background: #0e0f11; border-top: 1px solid var(--line); padding: 18px 16px; transition: flex-basis .8s var(--ease); }
[data-step="scan"] .ph-sheet { flex-basis: 25%; }
[data-step="preview"] .ph-sheet { flex-basis: 29%; }
.ph-sheet::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 34px; height: 4px; border-radius: 4px; background: var(--line-2); }
.ph-panel { position: absolute; inset: 20px 16px 16px; opacity: 0; transform: translateY(10px); transition: opacity .45s, transform .6s var(--ease); pointer-events: none; }
[data-step="scan"] [data-panel="scan"], [data-step="match"] [data-panel="match"], [data-step="preview"] [data-panel="preview"] { opacity: 1; transform: none; pointer-events: auto; transition-delay: .25s; }
.ph-kicker { margin: 0 0 12px; font: 700 10.5px/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }
.ph-progress { height: 5px; border-radius: 5px; background: var(--surface-2); overflow: hidden; }
.ph-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brass), var(--brass-2)); }
[data-step="scan"] .ph-progress i { width: 100%; transition: width calc(var(--step) - .6s) linear .3s; }
.ph-note { margin: 12px 0 0; font-size: 12px; color: var(--ink-3); }
.ph-matches { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ph-match { width: 100%; display: grid; grid-template-columns: 42px 1fr 46px; align-items: center; gap: 11px; padding: 6px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; text-align: left; transition: border-color .2s, background .2s; }
.ph-match:hover { border-color: var(--line-2); background: var(--surface-2); }
.ph-thumb { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; object-position: 50% 25%; }
.ph-match-text { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ph-match-text b { font-size: 13.5px; line-height: 1.1; font-weight: 650; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-match-text small { font-size: 11px; line-height: 1; color: var(--ink-3); }
.ph-bar { height: 5px; border-radius: 5px; background: var(--surface-2); overflow: hidden; margin-right: 4px; }
.ph-bar i { display: block; height: 100%; width: 0; border-radius: 5px; background: var(--brass); transition: width .9s var(--ease); }
[data-step="match"] .ph-bar[data-level="3"] i { width: 96%; transition-delay: .5s; }
[data-step="match"] .ph-bar[data-level="2"] i { width: 80%; transition-delay: .65s; }
[data-step="match"] .ph-bar[data-level="1"] i { width: 64%; transition-delay: .8s; }
.ph-matches li { opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .5s var(--ease); }
[data-step="match"] .ph-matches li { opacity: 1; transform: none; }
[data-step="match"] .ph-matches li:nth-child(1) { transition-delay: .3s; }
[data-step="match"] .ph-matches li:nth-child(2) { transition-delay: .42s; }
[data-step="match"] .ph-matches li:nth-child(3) { transition-delay: .54s; }
[data-panel="preview"] .ph-kicker { font: 600 22px/1.1 var(--serif); letter-spacing: -.02em; text-transform: none; color: var(--ink); margin-bottom: 8px; }
.ph-ask { margin: 0; font-size: 12.5px; line-height: 1.45; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ph-ask b { color: var(--brass); font-weight: 600; }

.demo-steps { margin-top: 26px; display: inline-flex; padding: 4px; gap: 4px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); }
.demo-steps button { position: relative; overflow: hidden; border: 0; background: none; color: var(--ink-3); font-size: 13.5px; font-weight: 600; padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: color .2s, background .2s; }
.demo-steps button:hover { color: var(--ink); }
.demo-steps button[aria-current="step"] { background: var(--surface-2); color: var(--ink); }
.demo-steps button::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left; }
.demo-steps.playing button[aria-current="step"]::after { animation: fill var(--step, 4s) linear forwards; }
@keyframes fill { to { transform: scaleX(1); } }
.demo-note { margin: 12px 0 0; font-size: 12.5px; color: var(--ink-3); }
.float {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 16px; background: rgba(20, 21, 24, .82); border: 1px solid var(--line-2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: 13.5px; font-weight: 600; white-space: nowrap; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .8);
  animation: bob 6s ease-in-out infinite;
}
.float small { display: block; font-weight: 400; color: var(--ink-3); font-size: 12px; }
.float b { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--surface-2); color: var(--brass); font: 600 15px/1 var(--serif); }
.phone-wrap { position: relative; }
.float-1 { right: calc(100% - 22px); top: 30%; }
.float-2 { left: calc(100% - 22px); top: 41%; animation-delay: -3s; }
@keyframes bob { 50% { transform: translateY(-10px); } }
@media (max-width: 1100px) { .float { display: none; } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 24px 0; background: var(--bg-2); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; will-change: transform; }
.marquee-set { display: flex; align-items: center; }
.marquee span { font: 600 30px/1 var(--serif); letter-spacing: -.02em; color: var(--ink); white-space: nowrap; padding: 0 26px; }
.marquee i { width: 7px; height: 7px; transform: rotate(45deg); background: var(--brass); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 120px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 56px; }
@media (max-width: 720px) { .section { padding: 80px 0; } .section-head { margin-bottom: 40px; } }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px 30px; overflow: hidden; transition: border-color .3s, transform .4s var(--ease); }
.step:hover { border-color: var(--line-2); transform: translateY(-3px); }
.step-n { display: block; font: 600 64px/1 var(--serif); letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1px var(--brass); margin-bottom: 26px; }
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.tag { display: inline-block; margin-top: 18px; padding: 5px 11px; border-radius: 999px; border: 1px solid rgba(201, 164, 107, .4); color: var(--brass-2); font-size: 12.5px; font-weight: 600; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Studios (before/after) ---------- */
.studio-side { min-width: 0; }
.studio-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: 48px; align-items: start; }
#colours .studio-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); }
#colours .ba { order: 2; }
@media (max-width: 900px) {
  .studio-grid, #colours .studio-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  #colours .ba { order: 0; }
}

.ba {
  --pos: 50%;
  position: relative; margin: 0; aspect-ratio: 5 / 6; border-radius: 28px; overflow: hidden;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; pointer-events: none; -webkit-user-drag: none; }
.ba-after { transition: opacity .35s; }
.ba-after.swapping { opacity: .25; }
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--ink); box-shadow: 0 0 20px rgba(0, 0, 0, .5); pointer-events: none; }
.ba-handle span { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; margin: -24px 0 0 -24px; border-radius: 50%; background: var(--ink); box-shadow: 0 10px 30px rgba(0, 0, 0, .45); transition: transform .25s var(--ease); }
.ba-handle span::before, .ba-handle span::after { content: ""; position: absolute; top: 50%; width: 8px; height: 8px; border: solid var(--bg); border-width: 0 0 2px 2px; margin-top: -4px; }
.ba-handle span::before { left: 12px; transform: rotate(45deg); }
.ba-handle span::after { right: 12px; transform: rotate(-135deg); }
.ba.dragging .ba-handle span, .ba:hover .ba-handle span { transform: scale(1.08); }
.ba-label { position: absolute; top: 18px; padding: 7px 12px; border-radius: 999px; font: 700 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; background: rgba(10, 10, 11, .6); color: var(--ink); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); pointer-events: none; }
.ba-label-before { left: 18px; }
.ba-label-after { right: 18px; color: var(--brass-2); }
.ba figcaption { position: absolute; left: 18px; bottom: 16px; font-size: 12px; color: var(--ink-2); background: rgba(10, 10, 11, .6); padding: 6px 10px; border-radius: 8px; pointer-events: none; }
.ba-range { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip: rect(0 0 0 0); }
.ba:focus-within { box-shadow: inset 0 0 0 1px var(--line), 0 0 0 2px var(--brass); }

.look-picker { display: grid; grid-template-columns: repeat(auto-fill, minmax(98px, 1fr)); gap: 10px; }
.look { display: flex; flex-direction: column; gap: 8px; padding: 6px 6px 10px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; text-align: center; transition: border-color .2s, background .2s, transform .3s var(--ease); }
.look:hover { transform: translateY(-2px); border-color: var(--line-2); }
.look[aria-checked="true"] { border-color: var(--brass); background: var(--surface-2); }
.look-thumb { width: 100%; height: auto; aspect-ratio: 1; border-radius: 11px; object-fit: cover; background: #fff; }
.look-name { font-size: 13px; font-weight: 600; line-height: 1.2; color: var(--ink-2); }
.look[aria-checked="true"] .look-name { color: var(--ink); }
@media (max-width: 900px) {
  .look-picker:not(.swatches) { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 96px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); scrollbar-width: none; }
  .look-picker:not(.swatches)::-webkit-scrollbar { display: none; }
  .look-picker:not(.swatches) .look { scroll-snap-align: start; }
}
.swatches { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.look-swatch { align-items: center; padding: 14px 6px 12px; }
.swatches .look-thumb { background: var(--surface-2); }
.swatch { width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), 0 6px 14px -6px rgba(0, 0, 0, .8); transition: transform .3s var(--ease); }
.look-swatch[aria-checked="true"] .swatch { transform: scale(1.08); box-shadow: 0 0 0 2px var(--surface-2), 0 0 0 4px var(--brass); }

.ask-card { margin-top: 18px; padding: 26px 26px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.ask-kicker { margin: 0 0 10px; font: 700 11.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }
.ask-card h3 { font: 600 30px/1.05 var(--serif); letter-spacing: -.02em; }
.ask-text { margin: 12px 0 0; font-size: 16.5px; color: var(--ink); line-height: 1.55; }
.ask-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.ask-facts dt { font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.ask-facts dd { margin: 0; font-size: 14.5px; color: var(--ink); }
.effort { display: inline-flex; gap: 4px; vertical-align: middle; }
.effort i { width: 20px; height: 6px; border-radius: 3px; background: var(--line-2); transition: background .3s; }
.effort[data-level="1"] i:nth-child(-n+1), .effort[data-level="2"] i:nth-child(-n+2), .effort[data-level="3"] i:nth-child(-n+3) { background: var(--brass); }
.copy-btn { margin-top: 20px; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line-2); background: none; font-size: 14.5px; font-weight: 600; cursor: pointer; transition: border-color .2s, background .2s; }
.copy-btn:hover { border-color: var(--ink-3); background: var(--surface-2); }
.copy-btn.copied { border-color: var(--brass); color: var(--brass-2); }
[data-f] { transition: opacity .25s; }
.fading [data-f] { opacity: 0; }

/* ---------- Privacy ---------- */
.privacy-band { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: start; }
.privacy-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.privacy-points li { display: flex; gap: 18px; padding: 22px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.privacy-points svg { width: 44px; height: 44px; flex: none; padding: 10px; border-radius: 50%; border: 1px solid rgba(201, 164, 107, .35); fill: none; stroke: var(--brass-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.privacy-points h3 { font-size: 17px; margin-bottom: 4px; }
.privacy-points p { margin: 0; color: var(--ink-2); font-size: 15px; }
@media (max-width: 900px) { .privacy-band { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Pricing ---------- */
.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pack { position: relative; padding: 30px 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); transition: transform .4s var(--ease), border-color .3s; }
.pack:hover { transform: translateY(-3px); border-color: var(--line-2); }
.pack-best { border-color: rgba(201, 164, 107, .5); background: linear-gradient(180deg, rgba(201, 164, 107, .09), var(--surface) 60%); }
.pack-tag { position: absolute; top: -12px; left: 26px; padding: 6px 11px; border-radius: 999px; background: var(--brass); color: var(--bg); font: 700 10.5px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.pack-n { font-size: 15px; color: var(--ink-2); }
.pack-p { font: 600 58px/1 var(--serif); letter-spacing: -.04em; margin: 12px 0 8px; }
.pack-each { color: var(--ink-3); font-size: 14px; }
.promise { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px 28px; color: var(--ink-2); font-size: 15px; }
.promise li { display: inline-flex; align-items: center; gap: 9px; }
.promise li::before { content: ""; width: 6px; height: 6px; transform: rotate(45deg); background: var(--brass); }
@media (max-width: 760px) {
  .packs { grid-template-columns: 1fr; }
  .pack { display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 12px; padding: 24px; }
  .pack-p { grid-row: span 2; grid-column: 2; margin: 0; font-size: 44px; }
  .pack-each { grid-column: 1; }
}

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 56px; align-items: start; }
.faq-grid .section-head { position: sticky; top: 110px; margin: 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 0; font-weight: 600; font-size: 17.5px; position: relative; transition: color .2s; }
.faq summary:hover { color: var(--brass-2); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 1.5px; background: var(--brass); transition: transform .35s var(--ease); }
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq details > div { padding: 0 0 22px; }
.faq details[open] > div { animation: open .45s var(--ease); }
.faq p { margin: 0; color: var(--ink-2); max-width: 64ch; }
@keyframes open { from { opacity: 0; transform: translateY(-6px); } }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 28px; } .faq-grid .section-head { position: static; } }

/* ---------- Final call to action ---------- */
.final { padding-top: 40px; }
.section.final { border-top: 0; }
.final-card { position: relative; overflow: hidden; text-align: center; padding: 84px 28px; border-radius: 34px; border: 1px solid var(--line); background: radial-gradient(80% 90% at 50% 0%, rgba(201, 164, 107, .16), transparent 70%), var(--surface); display: flex; flex-direction: column; align-items: center; }
.final-card h2 { max-width: 16ch; margin: 30px 0 16px; }
.final-card p { margin: 0 0 32px; color: var(--ink-2); font-size: 18px; max-width: 44ch; }
@media (max-width: 720px) { .final-card { padding: 60px 22px; } .mark-xl { font-size: 60px; } }

/* ---------- Text pages (privacy, terms, support) ---------- */
.doc { max-width: 740px; margin: 0 auto; padding: 56px var(--gutter) 100px; }
.doc h1 { font: 600 clamp(38px, 6vw, 58px)/1.02 var(--serif); letter-spacing: -.03em; }
.doc .meta { color: var(--ink-3); font-size: 14.5px; margin: 14px 0 0; }
.doc h2 { font: 600 26px/1.15 var(--serif); letter-spacing: -.02em; margin: 52px 0 12px; }
.doc h3 { font-size: 17px; margin: 28px 0 6px; }
.doc p, .doc li { color: #d8d3cb; }
.doc ul { padding-left: 22px; }
.doc li { margin: 7px 0; }
.doc strong { color: var(--ink); }
.summary-box { margin-top: 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; }
.summary-box h2 { margin-top: 0; font-size: 21px; }
.summary-box ul { margin: 0; }
.table-wrap { overflow-x: auto; margin: 16px 0; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
td:first-child { width: 44%; }
th, td { text-align: left; vertical-align: top; padding: 12px 14px; overflow-wrap: anywhere; border-bottom: 1px solid var(--line); }
th { color: var(--ink-3); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; background: var(--bg-2); }
tr:last-child td { border-bottom: 0; }
td { color: #d8d3cb; }
.doc .toc { margin: 26px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.toc a { display: inline-block; font-size: 14px; border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; color: var(--ink-2); text-decoration: none; transition: border-color .2s, color .2s; }
.toc a:hover { color: var(--ink); border-color: var(--ink-3); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 44px; color: var(--ink-3); font-size: 14px; }
.site-footer .wrap { display: grid; grid-template-columns: 1fr auto; gap: 28px 40px; align-items: start; }
.foot-brand p { margin: 12px 0 0; color: var(--ink-2); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: flex-end; padding-top: 6px; }
.site-footer nav a { color: var(--ink-2); text-decoration: none; }
.site-footer nav a:hover { color: var(--ink); }
.site-footer .copy { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12.5px; }
@media (max-width: 760px) { .site-footer .wrap { grid-template-columns: 1fr; } .site-footer nav { justify-content: flex-start; } }

/* ---------- Scroll reveal (only for things below the fold, added by site.js) ---------- */
.reveal.pre { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; transition-delay: 0s !important; }
  .marquee-track { animation-duration: 60s !important; animation-iteration-count: infinite !important; }
  .reveal.pre { opacity: 1; transform: none; }
}
.doc .toc li { margin: 0; }

.sw-jet-black{background:#0c0c0d}
.sw-dark-brown{background:#3b2619}
.sw-light-brown{background:#86603f}
.sw-dirty-blonde{background:#a88a5c}
.sw-blonde{background:#cfa556}
.sw-platinum-blonde{background:#e8e3d6}
.sw-auburn{background:#7a2e1c}
.sw-grey-silver{background:#a9adb1}
