:root {
  --bg: #101115;
  --bg-raised: #17181f;
  --bg-card: #1b1c25;
  --violet: #a7a0ff;
  --violet-bright: #c1bbff;
  --cyan: #82d6dc;
  --text: #f3f1ed;
  --text-dim: #b2b2bd;
  --text-faint: #a1a2b0;
  --line: #333540;
  --line-soft: #282a33;
  --control-line: #787987;
  --apricot: #edb27e;
  --surface-grain: url("surface-grain.svg");
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --ok: #34d399;
  --warn: #fb7185;
  --radius: 12px;
  --maxw: 1280px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height, 64px) + 20px); color-scheme: dark; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; }
button, input, select, textarea { font: inherit; }
button:disabled { cursor: wait; opacity: 0.6; }

body {
  margin: 0;
  background: var(--surface-grain), var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* The clipped decoration is separate from content so sticky controls keep their scroll container. */
.page-surface { position: relative; isolation: isolate; }
.page-ribbon { position: absolute; inset: 0 0 auto; height: var(--ribbon-height, 0px); z-index: 0; overflow: clip; pointer-events: none; mask-image: linear-gradient(180deg, transparent var(--ribbon-start, 0px), #000 calc(var(--ribbon-start, 0px) + 24px), #000 var(--ribbon-fade-start), #000000d7 calc(var(--ribbon-fade-start) + 120px), #00000080 calc(var(--ribbon-fade-start) + 240px), #00000028 calc(var(--ribbon-fade-end) - 120px), #0000000b calc(var(--ribbon-fade-end) - 60px), transparent var(--ribbon-fade-end)); }
.ribbon-flow { display: block; width: 100%; height: 100%; overflow: visible; }
.ribbon-texture path { stroke-width: 1.2px; opacity: .45; }
.ribbon-trace path { stroke-width: 1.5px; opacity: .55; stroke-dasharray: 62 938; animation: brush-pass 56s linear infinite; }
@keyframes brush-pass { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -1000; } }
.studio-light {
  --light-x: 85%; --light-y: 50%; --light-color: #9780ce45;
  --light-duration: 28s; --light-delay: -8s; --light-move-x: 4%; --light-move-y: 3%;
  position: absolute; inset: -64px 0; z-index: 0; overflow: clip; pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.studio-light::before, .studio-light::after { content: ""; position: absolute; inset: -8% -6%; }
.studio-light::before {
  background: radial-gradient(ellipse 72% 70% at var(--light-x) var(--light-y), var(--light-color), transparent 76%);
  animation: studio-light-drift var(--light-duration) ease-in-out var(--light-delay) infinite alternate;
}
.studio-light::after {
  background: radial-gradient(ellipse 58% 64% at 10% 75%, var(--light-reflection, transparent), transparent 78%);
  animation: studio-light-reflection 37s ease-in-out -17s infinite alternate;
}
.product-stories { position: relative; z-index: 1; isolation: isolate; }
.studio-light-product { --light-y: 22%; --light-reflection: #c39a7512; }
.studio-light-stories { --light-x: 5%; --light-y: 72%; --light-color: #b993702b; --light-duration: 34s; --light-delay: -21s; }
.studio-light-calculator { --light-x: 94%; --light-y: 67%; --light-color: #9780ce42; --light-duration: 32s; --light-delay: -14s; }
.studio-light-contact { --light-x: 6%; --light-y: 72%; --light-color: #cf956745; --light-duration: 30s; --light-delay: -5s; --light-reflection: #9178bc13; }
@keyframes studio-light-drift {
  from { transform: translate3d(calc(var(--light-move-x) * -1), calc(var(--light-move-y) * -1), 0) scale(1); }
  to { transform: translate3d(var(--light-move-x), var(--light-move-y), 0) scale(1.05); }
}
@keyframes studio-light-reflection {
  from { transform: translate3d(var(--light-move-x), calc(var(--light-move-y) * -1), 0) scale(1.02); }
  to { transform: translate3d(calc(var(--light-move-x) * -1), var(--light-move-y), 0) scale(1.07); }
}
.calculator-heading { max-width: 900px; }
.page-surface footer { position: relative; z-index: 1; }

h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; letter-spacing: -0.035em; text-wrap: balance; }
h1 { font-size: clamp(44px, 6vw, 76px); font-weight: 600; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 600; }
h3 { font-size: 21px; font-weight: 600; }
p { margin: 0 0 16px; color: var(--text-dim); }
a { color: var(--violet-bright); }

.grad { color: var(--violet-bright); }

/* Header */
.site-head {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: #101115ef;
  border-bottom: 1px solid var(--line-soft);
}
.site-head .wrap { display: flex; align-items: center; gap: 20px; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 650; letter-spacing: -0.025em; color: var(--text); text-decoration: none; }
.logo-mark {
  display: block; flex: 0 0 32px; width: 32px; height: 32px;
}
/* Header without the anchor menu, used on the standalone pages. */
.head-plain .logo { margin-right: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--text-dim); text-decoration: none; font-size: 14px; }
.nav a:hover { color: var(--text); }
.nav a:focus-visible { outline-offset: -2px; border-radius: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 7px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}
.btn-primary {
  background: var(--violet);
  color: #0b0518;
  box-shadow: none;
}
.btn-primary:hover { background: var(--violet-bright); transform: translateY(-1px); }
.btn-arrow { margin-left: 10px; font-size: 18px; font-weight: 400; transition: transform 160ms var(--ease); }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }
.btn-ghost { border-color: var(--control-line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--text-dim); background: #ffffff08; }
.btn:active { transform: translateY(1px); box-shadow: none; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* Sections */
section { padding: 96px 0; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--apricot); }
.lede { font-size: 18px; max-width: 62ch; }

/* Hero */
.hero {
  padding-top: 112px; padding-bottom: 64px;
  background: radial-gradient(ellipse at 85% 24%, #51406626, transparent 65%);
}
.hero .workflow-explorer { position: relative; }
.hero .eyebrow { font-size: 12px; letter-spacing: 0.03em; }
.hero-sub { font-size: 19px; max-width: 56ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-link { display: inline-flex; align-items: center; gap: 14px; padding: 13px 0; font-size: 14px; color: var(--text-dim); text-decoration: none; text-underline-offset: 5px; }
.hero-link:hover { color: var(--text); text-decoration: underline; }
.hero-link span { transition: transform 160ms var(--ease); }
.hero-link:hover span { transform: translateX(3px); }

/* Editorial campaign studies illustrate the three workflows. */
.work-examples { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 40px; }
.work-example { min-width: 0; }
.work-art { position: relative; aspect-ratio: 1.08; overflow: hidden; border-radius: 5px; isolation: isolate; }
.art-overline { position: absolute; z-index: 2; top: 22px; left: 22px; right: 22px; font: 10px/1.5 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.work-caption { padding-top: 22px; }
.case-index { display: block; font: 10px/1.6 var(--mono); text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); margin-bottom: 10px; }
.work-caption h3 { font-size: clamp(21px, 2.2vw, 28px); margin-bottom: 8px; }
.work-caption p { margin: 0; font-size: 14px; }
.launch-art { background: #dde7f2; color: #273348; }
.launch-art > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.launch-word { position: absolute; z-index: 1; top: 18%; left: 22px; font-size: clamp(38px, 4.6vw, 60px); font-weight: 600; letter-spacing: -0.07em; line-height: 0.95; }
.art-footnote { position: absolute; bottom: 18px; left: 22px; right: 22px; display: flex; justify-content: space-between; padding-top: 10px; border-top: 1px solid #30303b55; font-size: 11px; }
.reuse-art { background: #292c3c; color: #eef1fb; }
.reuse-strip { display: flex; gap: 8px; position: absolute; top: 24%; left: -8%; width: 120%; transform: rotate(-13deg); }
.reuse-strip > div { position: relative; flex: 1; height: 106px; border: 6px solid #e7ebf3; border-bottom-width: 20px; background: url('concept-sneaker.webp') center 72% / cover; }
.reuse-strip > div:nth-child(2) { background-size: 160%; background-position: 30% 70%; }
.reuse-strip > div:nth-child(3) { background-size: 200%; background-position: 75% 70%; }
.reuse-strip span { position: absolute; bottom: -18px; left: 2px; color: #36323e; font: 8px var(--mono); }
.reuse-edit { display: flex; position: absolute; z-index: 1; align-items: end; justify-content: space-between; left: 14%; right: 8%; bottom: 17%; padding: 20px; background: #b6abe9; color: #252136; box-shadow: 0 10px 36px #11101b66; transform: rotate(5deg); }
.reuse-edit > span { font-size: clamp(23px, 2.8vw, 38px); line-height: 1; letter-spacing: -0.045em; font-weight: 550; }
.reuse-edit i { font-style: normal; font-size: 28px; }
.reuse-timeline { display: flex; position: absolute; bottom: 22px; left: 22px; right: 22px; gap: 4px; }
.reuse-timeline i { height: 8px; flex: 1; border-radius: 2px; background: #78708e; }
.reuse-timeline i:nth-child(2) { flex: 1.8; background: #b6abe9; }
.reuse-timeline i:last-child { background: #edb27e; }
.agency-art { background: #252928; color: #d9e3db; }
.agency-sheet { position: absolute; width: 55%; height: 60%; border-radius: 3px; padding: 18px; box-shadow: 0 8px 24px #1116123d; }
.agency-sheet > span { font: 9px var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }
.agency-sheet strong { display: block; font-size: clamp(40px, 5.4vw, 72px); line-height: 1.6; letter-spacing: -0.06em; font-weight: 500; }
.agency-sheet i { display: block; height: 8px; width: 65%; border-radius: 1px; background: currentColor; opacity: 0.55; }
.agency-sheet-back { right: 7%; top: 19%; transform: rotate(10deg); background: #abc0ad; color: #324e43; text-align: right; }
.agency-sheet-back strong { font-family: Georgia, serif; font-style: italic; }
.agency-sheet-back i { margin-left: auto; }
.agency-sheet-front { left: 11%; top: 25%; transform: rotate(-9deg); background: #ebba92; color: #633d32; }
.agency-footer { position: absolute; display: flex; justify-content: space-between; bottom: 20px; left: 22px; right: 22px; font-size: 11px; }

/* Calculator */
.calc { position: relative; margin-top: 32px; }
.calc :is(button, summary, a) { scroll-margin-top: calc(var(--calc-sticky-height, 0px) + 16px); }
.calc input { scroll-margin-top: calc(var(--calc-sticky-height, 0px) + 80px); }
.calc-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items: start; }
.calc-inputs { padding: 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: #15161bbf; }
.calc-output { min-width: 0; padding: 24px; border: 1px solid #50495f; border-radius: var(--radius); background: linear-gradient(145deg, #262331, #1b1c25 65%); box-shadow: 0 20px 60px #08081026, inset 0 1px 0 #ffffff08; }
.calc-group { display: grid; gap: 12px; min-width: 0; }
.calc-group + .calc-group { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.calc-group-title { margin: 0; color: var(--text-faint); font: 500 11px/1.5 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.calc-group .field, .calc-group .seg { margin-bottom: 0; }
.calc-field-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.calc-field-pair .field-head { display: block; margin-bottom: 2px; }
.calc-field-pair .field-head label { display: block; max-width: none; font-size: 13px; font-weight: 400; color: var(--text-dim); }
.calc-field-pair .field-val { display: block; margin-top: 2px; font-size: 22px; }
.calc-inputs .assumptions { margin-top: 18px; padding-top: 12px; }
.assumptions-summary { margin: 0 0 18px; color: var(--text-faint); font-size: 13px; line-height: 1.5; }
.calc-method { font-size: 13px; line-height: 1.55; color: var(--text-faint); }
.calc-method p:last-child { margin-bottom: 0; }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 5px; border: 1px solid var(--line-soft); border-radius: 12px; margin-bottom: 26px; }
.seg button {
  padding: 10px 8px; border: 0; border-radius: 9px; background: transparent;
  color: var(--text-dim); font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.seg button:hover { background: #ffffff08; color: var(--text); }
.seg button[aria-pressed="true"] { background: var(--violet); color: #0b0518; }
.seg button:focus-visible { outline-offset: -2px; }
.seg button[aria-pressed="true"]:focus-visible { outline-color: #0b0518; }

.field { margin-bottom: 24px; }
.field-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.field-head label, .field-head > span:first-child:not(.field-val) { font-size: 14px; font-weight: 600; color: var(--text); }
.field-val { flex-shrink: 0; font-size: 15px; font-weight: 700; color: var(--violet-bright); font-variant-numeric: tabular-nums; }
.field-note { max-width: 54ch; font-size: 13px; line-height: 1.5; color: var(--text-faint); margin-top: 6px; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 36px; margin: 0; border-radius: 3px; cursor: pointer; background: linear-gradient(to right, var(--violet) var(--range-fill, 0%), var(--control-line) var(--range-fill, 0%)) center / 100% 4px no-repeat; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 0 4px #a7a0ff18; cursor: pointer;
  transition: box-shadow 160ms var(--ease);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border: 0; border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 0 4px #a7a0ff18; cursor: pointer;
  transition: box-shadow 160ms var(--ease);
}
input[type="range"]:hover::-webkit-slider-thumb { box-shadow: 0 0 0 6px #a7a0ff24; }
input[type="range"]:hover::-moz-range-thumb { box-shadow: 0 0 0 6px #a7a0ff24; }
input[type="range"]:focus-visible { box-shadow: 0 0 0 2px var(--cyan); }

.headline-loss { margin-bottom: 22px; }
.headline-loss span { display: block; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 6px; }
.headline-loss b {
  display: block; font-size: clamp(44px, 4.8vw, 64px); overflow-wrap: anywhere; font-weight: 600; letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.headline-loss em { font-style: normal; font-size: 14px; color: var(--text-faint); }

.rows { border-top: 1px solid var(--line-soft); margin-bottom: 22px; }
.row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.row dt { color: var(--text-dim); margin: 0; }
.row dd { margin: 0; font-weight: 650; font-variant-numeric: tabular-nums; white-space: normal; overflow-wrap: anywhere; text-align: right; }
.row.is-total dd { color: var(--violet-bright); }
.row.is-cost dd { color: var(--text); }

.plan-pick { margin: 16px 0 0; font-size: 13px; line-height: 1.5; color: var(--text-faint); }
.plan-pick b { color: var(--violet-bright); }
.calc-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 20px 0; padding-top: 20px; border-top: 1px solid var(--line); }
.calc-metrics > div { display: flex; flex-direction: column; min-width: 0; }
.calc-metrics dt { max-width: 22ch; font-size: 13px; line-height: 1.5; color: var(--text-faint); }
.calc-metrics dd { order: -1; margin: 0 0 8px; font-size: 32px; line-height: 1.1; font-weight: 500; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; color: var(--violet-bright); }
.calc-output > .disclosure { margin-top: 0; padding: 12px 0; }
.calc-output .disclosure > .rows { margin-top: 16px; margin-bottom: 0; }

.disclosure { border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: 8px; }
.disclosure > summary { cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-dim); list-style: none; }
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary::before { content: "+ "; color: var(--violet-bright); }
.disclosure[open] > summary::before { content: "- "; }
.disclosure-body { padding-top: 18px; }

.assumption-note { font-size: 14px; color: var(--text-faint); line-height: 1.55; }

/* Pricing */
.pricing { margin-top: 36px; }
.pricing-heading { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 24px; margin-bottom: 20px; }
.pricing-heading h3 { margin: 0; font-size: 25px; }
.pricing-heading p { margin: 0; font-size: 13px; color: var(--text-faint); }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 18px; }
.plan { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-card); padding: 24px; display: flex; flex-direction: column; }
.plan.is-featured { border-color: var(--violet); box-shadow: 0 0 0 1px #a7a0ff20; }
.plan-name { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.plan-price { font-size: 36px; font-weight: 600; letter-spacing: -0.04em; margin-bottom: 4px; }
.plan-price small { font-size: 14px; font-weight: 500; color: var(--text-faint); }
.plan-per { font-size: 14px; color: var(--text-dim); }
.plan-extra { margin: 4px 0 22px; font-size: 13px; color: var(--text-faint); }
.plan .btn { margin-top: auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.contact-copy { padding-top: 4px; }
.contact-copy .eyebrow { margin-bottom: 28px; }
.contact-copy h2 { font-size: clamp(56px, 6vw, 80px); line-height: 1.02; margin-bottom: 28px; }
.contact-copy h2 span { color: var(--violet-bright); }
.contact-copy .lede { max-width: 32ch; font-size: 18px; line-height: 1.65; }
#request-form { min-width: 0; padding-top: 8px; }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.form-heading h3 { margin: 0; font-size: 22px; }
.form-heading > span { color: var(--text-faint); font-size: 12px; }
.calc-cta .btn { width: 100%; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }
.form-field { min-width: 0; margin-bottom: 22px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--text-dim); }
input[type="text"], input[type="email"], input[type="url"], select, textarea {
  width: 100%; padding: 13px 15px; border-radius: 7px;
  border: 1px solid var(--control-line); background: #16171ee6;
  color: var(--text); font-family: var(--font); font-size: 16px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--violet-bright); outline-offset: 2px; border-color: var(--violet); box-shadow: 0 0 0 3px #a7a0ff18; }
input::placeholder, textarea::placeholder { color: var(--text-faint); opacity: 1; }
textarea { display: block; min-height: 144px; resize: vertical; }
.form-message { margin-bottom: 4px; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 13px; line-height: 1.6; color: var(--text-dim); padding: 11px 0; }
.form-consent input { width: 18px; height: 18px; flex: 0 0 18px; margin: 1px 0 0; accent-color: var(--violet-bright); }
.calculator-attachment { margin-bottom: 6px; }
.form-actions { display: flex; align-items: center; gap: 24px; margin-top: 18px; }
#f-submit { min-width: 196px; justify-content: space-between; }
.form-reply-note { margin: 0; color: var(--text-faint); font-size: 12px; line-height: 1.5; max-width: 24ch; }
.form-status { font-size: 14px; margin-top: 16px; }
.form-status:empty { margin: 0; }
.form-status.is-ok { color: var(--ok); }
.form-status.is-err { color: var(--warn); }
.form-honeypot { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.contact-email-caption { margin: 40px 0 6px; color: var(--text-faint); font-size: 13px; }
.contact-email { display: flex; flex-wrap: wrap; max-width: 100%; align-items: center; gap: 6px 16px; }
.contact-mail { padding: 8px 0; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 6px; text-decoration-thickness: 1px; font-size: 18px; font-weight: 500; color: var(--text); }
.contact-email-copy { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; gap: 7px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; background: #ffffff04; color: var(--text-dim); font-size: 12px; cursor: pointer; }
.contact-email-copy svg { flex: none; }
#copy-email-label { min-width: 40px; text-align: left; }
.contact-mail:hover { color: var(--violet-bright); text-decoration-color: var(--violet-bright); }
.contact-email-copy:hover { background: #a7a0ff20; color: var(--text); }
.contact-email-status { margin: 10px 0 0; max-width: 40ch; font-size: 12px; color: var(--text-dim); }
.contact-email-status:empty { margin: 0; }

footer { border-top: 1px solid var(--line-soft); padding: 32px 0; color: var(--text-faint); font-size: 12px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.site-footer .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; }
.footer-privacy { justify-self: end; }

@media (max-width: 400px) {
  .contact-email { gap: 6px 10px; }
  .contact-mail { font-size: 15px; }
  .contact-email-copy { padding: 8px; gap: 5px; }
}


@media (max-width: 900px) {
  section { padding: 64px 0; }
  .calc-grid, .contact-grid, .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* Header breaks into two rows: logo and CTA on top, anchors scrolling horizontally below. */
  .site-head .wrap { flex-wrap: wrap; height: auto; gap: 10px 14px; padding-top: 10px; padding-bottom: 10px; }
  .logo { margin-right: auto; }
  .nav {
    order: 1; width: 100%; margin-left: 0; gap: 18px;
    overflow-x: auto; white-space: nowrap; scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { flex: 0 0 auto; font-size: 14px; }
}

/* Product vision and calculator presentation */
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 18px; background: var(--text); color: var(--bg); border-radius: 8px; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 64px; }
.hero h1 { font-size: clamp(60px, 6.5vw, 88px); line-height: 1.01; letter-spacing: -0.055em; }
.hero h1 > span { display: block; }
.hero-sub { max-width: 38ch; margin-top: 32px; font-size: 18px; }
.hero-cta { margin-top: 32px; margin-bottom: 0; gap: 12px 28px; align-items: center; }
/* The explorer illustrates the planned workflow rather than live account data. */
.workflow-explorer { min-width: 0; background: #18191f; border: 1px solid #656171; border-radius: 12px; box-shadow: 0 32px 80px #08081052, 0 1px 0 #f3f1ed0a inset; }
.explorer-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 16px 24px; border-bottom: 1px solid var(--line); }
.explorer-brand { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.workflow-tabs { --tab-inset: 18px; --tab-gap: 4px; --active-tab: 2; position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); padding: 10px var(--tab-inset) 0; gap: var(--tab-gap); }
.workflow-tabs::after { content: ""; position: absolute; left: var(--tab-inset); bottom: 0; width: calc((100% - var(--tab-inset) * 2 - var(--tab-gap) * 4) / 5); height: 2px; background: var(--violet); transform: translateX(calc(var(--active-tab) * (100% + var(--tab-gap)))); transition: transform 220ms var(--ease); pointer-events: none; }
.workflow-tabs button { min-width: 0; padding: 12px 2px; font-size: 13px; font-weight: 500; line-height: 1.4; color: var(--text-dim); border: 0; border-bottom: 2px solid transparent; border-radius: 3px 3px 0 0; background: transparent; cursor: pointer; transition: background 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease); }
.workflow-tabs button:hover { color: var(--text); background: #ffffff08; }
.workflow-tabs button[aria-selected="true"] { color: var(--violet-bright); background: #a7a0ff08; }
.workflow-tabs button:focus-visible { outline-offset: -3px; }
.workflow-tabs button:disabled { cursor: default; }
.workflow-panels { display: grid; }
.workflow-panel { min-width: 0; grid-area: 1 / 1; padding: 24px; }
/* Overlap panels to reserve the tallest layout while hiding inactive content from focus and accessibility. */
.workflow-panel[hidden] { display: block !important; visibility: hidden; pointer-events: none; }
.workflow-panel:not([hidden]) { animation: panel-arrive 220ms var(--ease); }
@keyframes panel-arrive { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.panel-step { display: block; color: var(--text-faint); font: 11px/1.6 var(--mono); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.workflow-panel h2 { font-size: 25px; margin-bottom: 8px; }
.workflow-panel > p { font-size: 15px; line-height: 1.5; margin-bottom: 0; }
.preview-label { display: block; font: 11px/1.6 var(--mono); letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.brand-kit { display: grid; grid-template-columns: 1fr 124px; gap: 20px 28px; padding: 24px; margin-top: 24px; background: #1d1e27; border: 1px solid var(--line); border-radius: 4px; }
.brand-type { display: block; font-size: 76px; font-weight: 600; line-height: 1; letter-spacing: -0.06em; color: #e9e5fb; }
.brand-reference { display: block; grid-column: 2; grid-row: 1 / 3; width: 100%; height: 100%; min-height: 0; object-fit: cover; border-radius: 2px; }
.brand-palette { min-width: 0; }
.brand-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.brand-swatches span { display: block; height: 32px; border: 1px solid #ffffff22; border-radius: 2px; }
.brand-swatches span:nth-child(1) { background: #37395a; }
.brand-swatches span:nth-child(2) { background: #edb27e; }
.brand-swatches span:nth-child(3) { background: #f3e9dd; }
.storyboard { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.storyboard li { min-width: 0; }
.scene-frame { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: var(--apricot); border-radius: 3px; }
.scene-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.scene-frame > span { position: absolute; top: 16px; left: 12px; right: 8px; color: #1b1b28; font-size: clamp(16px, 1.4vw, 21px); font-weight: 600; line-height: 1.1; letter-spacing: -0.035em; }
.scene-detail img { transform: scale(1.65); transform-origin: 50% 66%; }
.scene-action { background: #37395a; }
.scene-action > span { color: #f3e9dd; top: 26px; font-size: clamp(22px, 2.3vw, 34px); }
.scene-action i { position: absolute; left: 12px; right: 12px; bottom: 16px; padding-top: 12px; border-top: 1px solid #f3e9dd55; color: #f3e9dd; font-size: 11px; font-style: normal; }
.scene-caption { position: relative; border-top: 1px solid var(--line); margin-top: 18px; padding-top: 16px; }
.scene-caption::before { content: ""; position: absolute; left: 0; top: -5px; width: 2px; height: 10px; background: var(--apricot); }
.story-step { display: block; font: 11px/1.6 var(--mono); color: var(--text-faint); margin-bottom: 8px; text-transform: uppercase; }
.storyboard strong { display: block; font-size: 15px; font-weight: 600; line-height: 1.3; }
.storyboard p { font-size: 13px; line-height: 1.5; margin: 8px 0 0; }
.editor-compose { display: grid; grid-template-columns: minmax(0, 210px) minmax(0, 1fr); gap: 24px; align-items: stretch; margin-top: 24px; }
.concept-frame { position: relative; align-self: start; width: 100%; aspect-ratio: 9 / 16; margin: 0; overflow: hidden; border-radius: 4px; background: var(--apricot); }
.concept-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.concept-frame figcaption { position: absolute; inset: 0; padding: 22px 16px; color: #1b1b28; }
.concept-frame figcaption > span { font-size: 28px; font-weight: 650; line-height: 1.05; letter-spacing: -0.04em; }
.editor-inspector { display: flex; flex-direction: column; justify-content: space-between; margin: 0; }
.editor-inspector > div { padding: 0 0 16px; border-bottom: 1px solid var(--line); }
.editor-inspector dt { font: 12px/1.5 var(--mono); text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-faint); }
.editor-inspector dd { font-size: 14px; line-height: 1.45; color: var(--text); margin: 5px 0 0; }
.editor-inspector .review-step { border: 0; padding: 0; margin: 0; }
.review-step dd { color: var(--violet-bright); }
.edit-timeline { position: relative; margin-top: 24px; padding-top: 12px; border-top: 1px solid var(--line); }
.edit-timeline::before { content: ""; position: absolute; top: -6px; left: 34%; width: 2px; height: 12px; background: var(--apricot); }
.timeline-clips { display: grid; grid-template-columns: 1fr 1.35fr 0.8fr; gap: 4px; font: 11px/1.6 var(--mono); }
.timeline-clips span { background: #716ba7; color: #fff; padding: 6px 9px; border-radius: 4px; }
.timeline-clips span:nth-child(2) { background: #585382; }
.timeline-clips span:nth-child(3) { background: #403d64; }
.timeline-caption { padding: 5px 9px; background: #a7a0ff0a; border: 1px solid #a7a0ff35; border-radius: 3px; margin-top: 5px; color: var(--violet-bright); font: 11px/1.6 var(--mono); }
.publish-map { --connector-space: 40px; --branch-width: 24px; display: grid; grid-template-columns: minmax(0, 136px) minmax(0, 1fr); gap: var(--connector-space); align-items: center; min-height: 360px; margin-top: 36px; }
.publish-source { position: relative; aspect-ratio: 9 / 16; }
.publish-source img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.publish-source > span { position: absolute; top: 16px; left: 12px; right: 8px; font-size: 20px; font-weight: 600; line-height: 1.1; letter-spacing: -0.035em; color: #1b1b28; }
.publish-source::after { content: ""; position: absolute; top: 50%; left: 100%; width: calc(var(--connector-space) - var(--branch-width)); border-top: 1px solid var(--apricot); }
.publish-list { position: relative; display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 16px; }
.publish-list::before { content: ""; position: absolute; left: calc(-1 * var(--branch-width)); top: calc((100% - 32px) / 6); bottom: calc((100% - 32px) / 6); border-left: 1px solid var(--apricot); }
.publish-list > div { position: relative; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); padding: 18px 0 18px 12px; }
.publish-list > div::before { content: ""; position: absolute; right: 100%; top: 50%; width: var(--branch-width); border-top: 1px solid var(--apricot); }
.channel-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; border: 1px solid #666174; color: var(--text); font-size: 14px; flex-shrink: 0; }
.publish-list strong { display: block; font-size: 16px; font-weight: 600; }
.publish-list strong + span { display: block; margin-top: 3px; font-size: 14px; color: var(--text-dim); }
.channel-format { margin-left: auto; font-size: 12px; color: var(--text-faint); }
.learn-example { margin-top: 30px; }
.learn-signal-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 16px; }
.learn-step { display: block; color: var(--text-faint); font: 10px/1.6 var(--mono); letter-spacing: .03em; text-transform: uppercase; }
.learn-example-note { color: var(--text-faint); font-size: 10px; }
.learn-retention { position: relative; margin-top: 22px; }
.learn-chart-label { display: block; font-size: 12px; color: var(--text-dim); margin-bottom: 10px; }
.learn-retention svg { display: block; width: 100%; height: 104px; overflow: visible; }
.learn-drop { position: absolute; top: 22px; left: 34%; color: var(--apricot); font-size: 12px; line-height: 1.4; }
.learn-axis { display: flex; justify-content: space-between; margin-top: 8px; color: var(--text-faint); font: 10px/1.5 var(--mono); }
.learn-next { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: center; gap: 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.learn-opening-pair { display: grid; grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr); align-items: center; gap: 8px; }
.learn-opening { min-width: 0; }
.learn-opening > img, .learn-title-frame { display: block; width: 100%; aspect-ratio: 3 / 4; height: auto; object-fit: cover; border-radius: 3px; }
.learn-opening > img { object-position: center 70%; }
.learn-opening > span { display: block; margin-top: 8px; font-size: 10px; line-height: 1.4; color: var(--text-dim); }
.learn-opening:last-child > span { color: var(--violet-bright); }
.learn-title-frame { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 10px; color: #e9e5fb; background: #37395a; }
.learn-title-frame > span { font-size: clamp(10px, 1vw, 14px); font-weight: 550; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 16px; }
.learn-title-frame i { width: 75%; height: 2px; background: #e9e5fb38; margin-top: 4px; }
.learn-title-frame i:last-child { width: 45%; }
.learn-change-arrow { color: var(--apricot); font-size: 22px; margin-bottom: 22px; }
.learn-edit strong { display: block; font-size: 21px; font-weight: 550; letter-spacing: -.035em; line-height: 1.15; margin-top: 10px; }
.learn-edit p { margin: 10px 0 0; font-size: 13px; line-height: 1.6; }
.learn-example .learn-loop { display: flex; gap: 9px; align-items: baseline; margin: 24px 0 0; color: var(--text-dim); font-size: 12px; line-height: 1.5; }
.learn-loop > span { color: var(--violet-bright); font-size: 20px; }
.input-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0; }
.input-tags span { padding: 4px 9px; border: 1px solid var(--line); border-radius: 5px; color: var(--text-faint); font-size: 14px; }
.workspace-rows { margin: 20px 0 0; }
.workspace-rows > div { display: flex; gap: 16px; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line-soft); font-size: 14px; }
.workspace-rows dt { color: var(--text-faint); }
.workspace-rows dd { margin: 0; color: var(--text); text-align: right; }
.product-overview { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 48px; align-items: center; }
.product-intro .lede { max-width: 28ch; margin-top: 24px; }
.product-points { padding: 0; margin: 28px 0 0; list-style: none; }
.product-points li { display: flex; align-items: baseline; gap: 16px; padding: 8px 0; font-size: 14px; color: var(--text-dim); }
.product-points span { color: var(--apricot); font: 10px var(--mono); }
.brand-story { display: grid; grid-template-columns: minmax(0, 0.78fr) 40px minmax(0, 1.22fr); align-items: center; min-height: 390px; padding: 32px 24px; }
.identity-sheet { padding: 20px; background: #dce6dc; color: #29382f; transform: rotate(-6deg); box-shadow: 0 18px 50px #09081044; }
.sheet-label { font: 10px var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.identity-type { display: flex; align-items: start; justify-content: space-between; font-size: clamp(48px, 6vw, 80px); font-weight: 500; line-height: 1.6; letter-spacing: -0.08em; }
.identity-type > span { margin-top: 18px; font-size: 20px; line-height: 1; }
.identity-palette { display: flex; gap: 4px; }
.identity-palette i { flex: 1; height: 24px; background: #33493d; }
.identity-palette i:nth-child(2) { background: #a8bba7; }
.identity-palette i:nth-child(3) { background: #f3efe6; }
.identity-foot { display: flex; flex-wrap: wrap; gap: 4px 10px; margin-top: 14px; font-size: 9px; }
.story-connector { align-self: center; position: relative; height: 1px; background: #d4bfad88; }
.story-connector > span { position: absolute; right: -1px; top: -17px; font-size: 22px; color: var(--apricot); }
.story-frames { position: relative; height: 324px; }
.story-frame { position: absolute; width: 66%; height: 92%; border-radius: 5px; overflow: hidden; box-shadow: 0 14px 44px #08081055; }
.story-frame-back { right: -4%; top: 0; transform: rotate(9deg); background: #33493d; color: #f3efe6; padding: 24px 18px; }
.story-frame-back > span { display: block; font-size: clamp(24px, 3.2vw, 42px); line-height: 1; letter-spacing: -0.055em; }
.story-frame-back > i { position: absolute; left: 18px; right: 18px; bottom: 18px; font-size: 9px; font-style: normal; }
.story-frame-front { left: 3%; top: 24px; transform: rotate(-3deg); color: #243b32; background: #dce6dc; }
.story-frame-front > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.story-frame-front > span { position: absolute; top: 20px; left: 16px; right: 10px; font-size: clamp(20px, 2.4vw, 31px); font-weight: 600; line-height: 1.05; letter-spacing: -0.04em; }
.story-review { display: flex; align-items: center; gap: 8px; position: absolute; right: 0; bottom: -20px; padding: 10px 14px; border: 1px solid #777085; border-radius: 6px; background: #26232fe8; color: var(--violet-bright); box-shadow: 0 8px 24px #09081044; font-size: 12px; }
#compare { padding-top: 40px; }
#team { border-top: 1px solid #ffffff08; border-bottom: 1px solid #ffffff08; background: #15161c66; }
/* Team composition: open typography with no portrait or card assets. */
.team-composition { display: grid; gap: 40px; }
.team-heading .eyebrow { margin-bottom: 18px; }
.team-heading h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); }
.team-heading h2 span { color: var(--apricot); }
.team-founders { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.founder-profile { --founder-accent: var(--violet-bright); display: grid; grid-template-columns: 152px minmax(0, 1fr); align-items: center; gap: 28px; min-width: 0; border-top: 1px solid var(--line); padding-top: 32px; }
.founder-brand { --founder-accent: var(--apricot); }
.founder-monogram { display: block; color: var(--founder-accent); font-size: 112px; font-weight: 500; letter-spacing: -0.1em; line-height: 1; }
.founder-identity { min-width: 0; }
.founder-identity h3 { margin: 0 0 12px; font-size: clamp(24px, 2.4vw, 32px); font-weight: 500; line-height: 1.16; letter-spacing: -0.035em; }
.founder-identity h3 span { display: block; }
.founder-position { margin: 0; color: var(--text-dim); font-size: 13px; line-height: 1.6; }
.team-programme { display: flex; align-items: baseline; gap: 28px; border-top: 1px solid var(--line-soft); padding-top: 22px; }
.team-programme-caption { flex: none; color: var(--text-faint); font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.team-programme p { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin: 0; font-size: 13px; }
.team-programme strong { color: var(--text); font-size: 15px; font-weight: 500; }
.team-programme p > span { color: var(--text-dim); }

@media (max-width: 1100px) {
  .team-founders { gap: 32px; }
  .founder-profile { grid-template-columns: 112px minmax(0, 1fr); gap: 20px; }
  .founder-monogram { font-size: 88px; }
  .founder-identity h3 { font-size: 26px; }
}
@media (max-width: 900px) {
  .founder-profile { grid-template-columns: 1fr; gap: 20px; }
  .founder-monogram { font-size: 100px; }
  .team-programme { flex-direction: column; gap: 8px; }
}
@media (max-width: 600px) {
  .team-composition { gap: 28px; }
  .team-founders { grid-template-columns: 1fr; gap: 24px; }
  .founder-profile { grid-template-columns: 84px minmax(0, 1fr); gap: 24px; padding-top: 24px; }
  .founder-monogram { font-size: 64px; }
  .founder-identity h3 { margin-bottom: 8px; font-size: 25px; }
  .team-programme { padding-top: 20px; }
  .team-programme p { flex-direction: column; gap: 4px; }
}
@media (max-width: 380px) {
  .founder-profile { grid-template-columns: 72px minmax(0, 1fr); gap: 16px; }
  .founder-monogram { font-size: 56px; }
  .founder-identity h3 { font-size: 22px; }
}
#calculator { padding-top: 96px; }
#calculator .lede { max-width: 75ch; }
.calc-inputs { min-width: 0; }
.calc-mobile-summary { display: none; }
.calc-cta { margin-top: 24px; }
.headline-loss { margin-bottom: 12px; }
.headline-loss span { color: var(--text-dim); font: 13px/1.5 var(--font); letter-spacing: 0; text-transform: none; }
.headline-loss b { line-height: 1.25; padding-bottom: 8px; }
.headline-loss em { display: block; }
.comparison-note { font-size: 14px; }
.calc-result-note { margin: 4px 0 0; font-size: 12px; color: var(--text-faint); }
.is-warning { color: #ffc48a; }
.cost-chart { margin: 18px 0; }
.chart-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 4px 12px; margin: 10px 0 7px; font-size: 14px; }
.chart-head span { color: var(--text-dim); }
.chart-head b { font-variant-numeric: tabular-nums; }
.bar-track { height: 12px; border-radius: 3px; background: #363440; }
.bar { height: 100%; border-radius: 3px; transition: width 180ms ease; }
.bar-current { background: #918b9f; }
.bar-new { background: var(--violet); }
.assumptions { border-top: 1px solid var(--line); padding-top: 18px; }
.assumptions summary, .snapshot-preview summary { cursor: pointer; color: var(--violet-bright); font-weight: 600; font-size: 14px; padding: 6px 0; }
.assumptions .field:last-child { margin-bottom: 12px; }
.text-button { padding: 10px 0; background: none; border: 0; color: var(--text-dim); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; font-size: 14px; }
.plan.is-featured .plan-name::after { content: " / Selected"; color: var(--violet-bright); }
.brief-details { margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.brief-details > summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; list-style: none; min-height: 54px; font-size: 13px; color: var(--text-dim); }
.brief-details > summary::-webkit-details-marker { display: none; }
.brief-details > summary:hover { color: var(--text); }
.optional-label { margin-left: 8px; color: var(--text-faint); font-size: 11px; }
.disclosure-mark { position: relative; width: 12px; height: 12px; flex: 0 0 12px; color: var(--violet-bright); }
.disclosure-mark::before, .disclosure-mark::after { content: ""; position: absolute; background: currentColor; }
.disclosure-mark::before { width: 12px; height: 1px; left: 0; top: 5px; }
.disclosure-mark::after { width: 1px; height: 12px; left: 5px; top: 0; }
.brief-details[open] .disclosure-mark::after { display: none; }
.brief-details .disclosure-body { padding-top: 12px; }
.notice { border-left: 3px solid var(--violet-bright); padding: 14px 18px; background: #a7a0ff0b; color: var(--text-dim); font-size: 16px; }
.snapshot-preview { margin: 0 0 18px; }
.snapshot-preview pre { white-space: pre-wrap; overflow-wrap: anywhere; font: 14px/1.6 var(--font); color: var(--text-dim); padding: 16px; border: 1px solid var(--line); border-radius: 10px; }
#request-draft { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 18px; }
#request-draft label { font-size: 14px; }
#draft-text { display: block; margin: 10px 0 14px; min-height: 220px; }
.privacy-content { max-width: 820px; }
.privacy-content h1 { font-size: clamp(36px, 4.5vw, 56px); }
.privacy-content h2 { font-size: 24px; margin-top: 38px; }

@media (max-width: 1000px) {
  .work-examples { gap: 20px; }
  .product-overview { gap: 24px; }
  .brand-story { padding-left: 0; padding-right: 12px; }
  .agency-sheet { padding: 14px; }
  .hero-grid { gap: 28px; }
  .workflow-panel { padding: 20px; }
  .editor-compose { grid-template-columns: minmax(0, 180px) minmax(0, 1fr); gap: 20px; }
  .contact-grid { gap: 48px; }
}
@media (min-width: 1200px) and (min-height: 1000px) {
  .calc-output:not(:has(details[open])) { position: sticky; top: calc(var(--header-height, 64px) + 20px); }
}
@media (max-width: 900px) {
  .product-overview { grid-template-columns: 1fr; gap: 12px; }
  .product-intro .lede { max-width: 42ch; }
  .brand-story { width: 100%; max-width: 640px; justify-self: center; padding: 32px 24px; }
  .contact-copy .lede { max-width: 42ch; }
  .contact-email-caption { margin-top: 28px; }
  #request-form { border-top: 1px solid var(--line); padding-top: 28px; }
  .studio-light { --light-move-x: 2%; --light-move-y: 2%; }
  .studio-light-calculator { --light-x: 100%; --light-y: 28%; }
  .hero .workflow-explorer { margin-top: 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(52px, 9vw, 80px); }
  .hero-sub { max-width: 46ch; }
  .workflow-explorer { max-width: 620px; }
  .editor-compose { grid-template-columns: minmax(0, 210px) minmax(0, 1fr); }
  .hero { padding-top: 44px; }
  .calc-grid { gap: 20px; }
  .calc { --calc-sticky-height: var(--calc-summary-height, 0px); }
  .calc-mobile-summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; position: sticky; top: var(--header-height, 104px); z-index: 5; padding: 14px 24px; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 8px; background: #1d1c28f7; backdrop-filter: blur(12px); }
  .calc-mobile-summary span { min-width: 0; font-size: 14px; line-height: 1.4; color: var(--text-dim); }
  .calc-mobile-summary b { font-size: 24px; font-variant-numeric: tabular-nums; color: var(--violet-bright); white-space: nowrap; }
}
@media (max-width: 900px) and (max-height: 600px) {
  .calc { --calc-sticky-height: 0px; }
  .calc-mobile-summary { position: static; }
}
@media (max-width: 700px) {
  .work-examples { grid-template-columns: 1fr; gap: 32px; }
  .work-example { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 22px; align-items: center; }
  .work-caption { padding-top: 0; }
  .work-caption h3 { font-size: 26px; }
  .launch-word { font-size: 52px; }
  .agency-sheet strong { font-size: 44px; }
  .reuse-edit > span { font-size: 25px; }
  .site-footer .wrap { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
  .footer-privacy { align-self: flex-end; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  #f-submit { width: 100%; }
  .form-reply-note { max-width: none; text-align: center; }
  .storyboard { grid-template-columns: 1fr; gap: 20px; }
  .storyboard li { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: 20px; align-items: center; }
  .scene-frame > span { font-size: 11px; top: 10px; left: 6px; right: 4px; }
  .scene-action > span { font-size: 17px; top: 14px; }
  .scene-action i { display: none; }
  .scene-caption { border-top: 0; margin-top: 0; padding-top: 0; }
  .scene-caption::before { display: none; }
  .story-step { margin-bottom: 5px; }
  .storyboard p { margin-top: 5px; }
}
@media (max-width: 480px) {
  .product-overview { gap: 0; }
  .product-points { margin-top: 20px; }
  .brand-story { grid-template-columns: minmax(0, 0.85fr) 24px minmax(0, 1.15fr); min-height: 300px; padding: 24px 8px; margin-top: 12px; }
  .identity-sheet { padding: 12px; }
  .identity-type { font-size: 46px; }
  .identity-type > span { margin-top: 12px; font-size: 16px; }
  .sheet-label { font-size: 8px; }
  .identity-palette i { height: 18px; }
  .identity-foot { font-size: 8px; gap: 3px 6px; margin-top: 10px; }
  .story-frames { height: 250px; }
  .story-frame { width: 74%; }
  .story-frame-back { right: -1%; padding: 16px 12px; }
  .story-frame-back > span { font-size: 24px; }
  .story-frame-back > i { left: 12px; font-size: 8px; }
  .story-frame-front { left: 0; }
  .story-frame-front > span { top: 16px; left: 10px; font-size: 18px; }
  .story-review { font-size: 10px; padding: 8px 10px; bottom: -14px; }
  .work-example { display: block; }
  .work-art { aspect-ratio: 1.3; }
  .work-caption { padding-top: 18px; }
  .work-caption h3 { font-size: 27px; }
  .launch-art { aspect-ratio: 1; }
  .launch-word { font-size: clamp(36px, 12vw, 52px); }
  .agency-sheet strong { font-size: 56px; line-height: 1.3; }
  .reuse-edit > span { font-size: 32px; }
  .hero .workflow-explorer { margin-top: 84px; }
  .wrap { padding-left: 18px; padding-right: 18px; }
  section { padding: 48px 0; }
  .site-head .wrap { gap: 8px; }
  .site-head .btn-sm { padding: 10px 12px; }
  .nav { gap: 20px; }
  .nav a { padding: 4px 0; }
  .hero { padding-bottom: 56px; }
  .hero-cta { gap: 10px 20px; }
  .hero-cta .btn { width: 100%; }
  .hero-link { margin: 0 auto; }
  .hero h1 { font-size: clamp(44px, 12vw, 58px); }
  .hero-sub { font-size: 17px; margin-top: 24px; margin-bottom: 24px; }
  .workflow-tabs { --tab-inset: 8px; --tab-gap: 0px; }
  .workflow-tabs button { padding: 12px 0; font-size: 12px; }
  .workflow-panel { padding: 22px 16px; }
  .workflow-panel h2 { font-size: 23px; }
  .explorer-head { padding: 16px; }
  .workspace-rows > div { flex-wrap: wrap; gap: 4px 14px; }
  .editor-compose { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr); gap: 16px; }
  .editor-inspector > div { padding-bottom: 10px; }
  .concept-frame figcaption { padding: 16px 10px; }
  .concept-frame figcaption > span { font-size: 19px; }
  .brand-kit { grid-template-columns: minmax(0, 1fr) 88px; gap: 16px; padding: 18px; }
  .brand-type { font-size: 56px; }
  .brand-reference { grid-row: 1; max-height: 116px; }
  .brand-palette { grid-column: 1 / -1; }
  .storyboard li { grid-template-columns: 64px minmax(0, 1fr); gap: 16px; }
  .scene-frame:not(.scene-action) > span { font-size: 9px; }
  .storyboard strong { font-size: 14px; }
  .publish-map { --connector-space: 28px; --branch-width: 18px; grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr); min-height: 0; margin-top: 32px; }
  .publish-source > span { top: 12px; left: 8px; font-size: 16px; }
  .publish-list > div { padding: 14px 0 14px 8px; gap: 0; }
  .publish-list strong { font-size: 14px; }
  .channel-mark, .publish-list strong + span { display: none; }
  .channel-format { display: none; }
  .learn-next { grid-template-columns: 80px minmax(0, 1fr); gap: 18px; }
  .learn-opening-pair { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .learn-opening:first-child, .learn-change-arrow { display: none; }
  .learn-edit strong { font-size: 20px; }
  .contact-copy { padding-top: 0; }
  .contact-copy h2 { font-size: 60px; margin-bottom: 24px; }
  .contact-copy .lede { font-size: 16px; }
  .contact-grid { gap: 32px; }
  #calculator { padding-top: 48px; }
  .calc-inputs, .calc-output { padding: 20px; }
  .calc-mobile-summary { padding: 12px 18px; }
  .calc-mobile-summary b { font-size: clamp(18px, 5vw, 22px); }
  .field-head { align-items: flex-start; gap: 10px; }
  .field-head label { max-width: 72%; }
  .field-val { font-size: 14px; }
  .row { gap: 12px; }
  .row dt { flex: 1; }
  .row dd { max-width: 48%; }
  .disclosure .row { display: block; }
  .disclosure .row dd { max-width: none; margin-top: 6px; text-align: left; }
  .seg { gap: 2px; padding: 3px; }
  .seg button { padding: 11px 4px; font-size: 14px; }
  .headline-loss b { font-size: clamp(32px, 9vw, 42px); }
  .calc-metrics { gap: 16px; }
  .calc-metrics dd { font-size: 28px; }
  .plan { padding: 22px; }
  .calc-field-pair { gap: 20px; }
  .calc-field-pair .field-val { font-size: 20px; }
}
@media (max-width: 340px) {
  .editor-compose { gap: 12px; }
  .concept-frame figcaption > span { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .ribbon-trace { display: none; }
}
