/* ============================================================
   Creative Technologist Hours — ReallyGood.CV system
   Warm paper field · founder letter · handwriting + highlighter
   Tokens from REALLYGOOD-CV-DESIGN.md
   ============================================================ */

/* Rahul's custom melted derivative of Young Serif (OFL) — self-hosted */
@font-face {
  font-family: "YoungSerif Melt";
  src: url("fonts/youngserif-melt.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eeeeee;
  --paper: #ffffff;
  --ink: #191919;
  --strong: #1e1c1b;
  --display: "Young Serif", Georgia, serif;
  --muted: #6f6d69;
  --dim: #8f8c85;
  --rule: #09090921;
  --yellow: #ffe57b;
  --note-green: #98f28d;
  --note-pink: #ff82f4;
  --note-blue: #76c7ff;
  --note-orange: #ffb07c;
  --note-purple: #c7a7ff;
  --tape: #fff3b8;
  --sans: "Google Sans Flex", Inter, system-ui, sans-serif;
  --hand: "YoungSerif Melt", "Young Serif", Georgia, serif;
  --serif: "Young Serif", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --col: 620px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { display: flex; flex-direction: column; align-items: center; }

/* ---------- type ---------- */
h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--strong);
  text-align: center;
  max-width: 860px;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.125rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--strong);
  margin-bottom: 28px;
}
/* headings that carry the display face (matches Paper) */
.proof h2,
.ai-pillar h2,
#how-it-works h2,
.faq h2,
.final h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.21;
}
h3 { font-size: 1.375rem; font-weight: 600; margin-bottom: 10px; }
p { color: var(--ink); margin-bottom: 24px; }
.letter p, .proof > p, .ai-pillar > p, .bio > p, #how-it-works > p { font-size: 22px; line-height: 1.6; }
section p:last-of-type { margin-bottom: 0; }

mark {
  background: rgba(59, 130, 246, 0.18);
  color: inherit;
  padding: 0.06em 0.1em;
  border-radius: 0;
  position: relative;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* text-selection handles: bar + dot at start (top) and end (bottom) */
mark::before, mark::after {
  content: "";
  position: absolute;
  width: 11px;
  pointer-events: none;
}
mark::before {
  left: -5px; top: -0.35em; height: 1.55em;
  background:
    radial-gradient(circle 4.5px at 5.5px 4.5px, #1d4ed8 97%, transparent) no-repeat,
    linear-gradient(#1d4ed8, #1d4ed8) no-repeat 4.75px 7px / 2px calc(100% - 7px);
}
mark::after {
  right: -5px; bottom: -0.35em; height: 1.55em;
  background:
    radial-gradient(circle 4.5px at 5.5px calc(100% - 4.5px), #1d4ed8 97%, transparent) no-repeat,
    linear-gradient(#1d4ed8, #1d4ed8) no-repeat 4.75px 0 / 2px calc(100% - 7px);
}

.hand { font-family: var(--hand); font-weight: 500; line-height: 1.25; }
.hand-hero { font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 500; text-align: center; }
.hand-lg { font-size: clamp(1.35rem, 2.2vw, 1.625rem); }
.hand-md { font-size: 1.5rem; }
.tilt { display: inline-block; transform: rotate(-1.5deg); }
.serif {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.9vw, 2.125rem);
  line-height: 1.15;
  color: var(--strong);
  text-align: center;
  transform: rotate(-2deg);
}
.serif-quote { font-family: var(--serif); font-size: 1.8rem; line-height: 1.45; color: var(--dim); text-align: center; }
.mono-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--dim); text-transform: uppercase; }
.mono-line { font-family: var(--mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: #000; }
.mono-tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--muted); }

/* ---------- layout ---------- */
.section {
  width: min(var(--col), calc(100vw - 48px));
  padding: 88px 0 0;
}

/* ---------- buttons: chunky 3D (blue face, darker depth edge) ---------- */
:root {
  --btn-blue: #3b82f6;
  --btn-blue-deep: #1d4ed8;
  --btn-white-deep: #9fb3c8;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}
.btn-dark {
  color: #fff;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--btn-blue) 78%, white), var(--btn-blue) 45%);
  box-shadow: 0 5px 0 var(--btn-blue-deep), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-dark:hover {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--btn-blue-deep), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-dark:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 var(--btn-blue-deep), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-ghost {
  color: var(--ink);
  background: linear-gradient(to bottom, #ffffff, #e6ecf3 90%);
  box-shadow: 0 5px 0 var(--btn-white-deep), inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px #d3dde8;
}
.btn-ghost:hover {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--btn-white-deep), inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px #d3dde8;
}
.btn-ghost:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 var(--btn-white-deep), inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px #d3dde8;
}
.btn-sm { padding: 9px 20px; font-size: 0.88rem; border-radius: 12px; }
.btn-lg { padding: 16px 34px; font-size: 1.08rem; border-radius: 16px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- nav ---------- */
/* floating pill nav */
.nav {
  position: sticky; top: 16px; z-index: 100;
  width: 100%;
  padding: 16px 24px 0;
}
.nav-inner {
  max-width: 1060px; margin: 0 auto;
  padding: 14px 14px 14px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-radius: 16px;
}
.wordmark {
  font-family: var(--hand);
  font-size: 1.0625rem; font-weight: 400; line-height: 1.3;
  color: var(--ink); text-decoration: none;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
@media (max-width: 860px) { .nav-links { display: none; } }

/* keep anchored sections clear of the floating nav */
[id] { scroll-margin-top: 112px; }

/* ---------- hero ---------- */
.hero {
  display: flex; flex-direction: column; align-items: center; gap: 34px;
  width: min(940px, calc(100vw - 48px));
  padding: 96px 0 40px;
}

/* ---------- photo slots + polaroids ---------- */
.photo-slot {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px dashed var(--dim);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: center;
  padding: 16px;
}
.photo-slot.wide { width: min(640px, calc(100vw - 96px)); height: 380px; }
.photo-slot.portrait { width: min(420px, calc(100vw - 120px)); height: 420px; }
.photo-slot.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  flex-shrink: 0; padding: 4px; font-size: 0.5rem; overflow: hidden;
  background: var(--paper);
}
.photo-slot.avatar.big { width: 88px; height: 88px; font-size: 0.55rem; margin: 0 auto; }
.photo-slot.ai-photo { width: 100%; height: 320px; border-radius: 4px; background: var(--paper); margin-top: 32px; }

.polaroid {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--paper);
  padding: 16px 16px 20px;
  transform: rotate(-1deg);
  position: relative;
  margin-top: 40px;
}
.polaroid .tape {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 18px; background: var(--tape); opacity: 0.95;
}
.polaroid figcaption { font-size: 1.6rem; }
.bio .polaroid { transform: rotate(1deg); align-self: center; margin: 0 auto 40px; }

/* ---------- founder letter ---------- */
.letter { width: min(var(--col), calc(100vw - 48px)); padding: 80px 0 0; }
.avatar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }

/* ---------- sludge ---------- */
.sludge {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  width: min(760px, calc(100vw - 48px));
  padding: 88px 0 0;
  text-align: center;
}
.sludge-line { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--dim); }
.sludge-line s { text-decoration-thickness: 2px; }
.sludge-bold { font-size: clamp(1.25rem, 2.1vw, 1.5rem); font-weight: 500; color: var(--ink); }

/* ---------- thesis ---------- */
.thesis {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  width: min(var(--col), calc(100vw - 48px));
  padding: 96px 0 0;
}
.rule { width: 220px; border: none; border-top: 1px solid var(--rule); }

/* ---------- proof stickies ---------- */
.proof { width: min(980px, calc(100vw - 48px)); }
.proof h2, .proof > p { max-width: var(--col); }
.sticky-cluster {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
  gap: 28px; padding: 24px 0 8px;
}
.sticky {
  display: flex; flex-direction: column; align-items: center;
  width: 210px; padding: 0 18px 22px;
  transform: rotate(var(--tilt, 0deg));
}
.sticky .tape { width: 64px; height: 16px; background: var(--tape); opacity: 0.9; margin-top: -6px; }
.sticky .hand { font-size: 1.5rem; font-weight: 500; text-align: center; margin-top: 14px; }
.sticky.green { background: var(--note-green); }
.sticky.blue { background: var(--note-blue); }
.sticky.orange { background: var(--note-orange); }
.sticky.purple { background: var(--note-purple); }
.sticky.pink { background: var(--note-pink); }
.proof .mono-line { margin-top: 24px; text-align: center; }

/* ---------- receipt (seed-later) ---------- */
.receipt { display: flex; flex-direction: column; align-items: center; gap: 20px; width: min(var(--col), calc(100vw - 48px)); padding: 96px 0 0; }
.receipt[hidden] { display: none; }
.quote-attrib { display: flex; align-items: center; gap: 14px; color: var(--dim); }
.quote-attrib strong { display: block; }

/* ---------- extraction ---------- */
.extraction {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 88px 0 0; text-align: center;
}
.extraction .strong { font-weight: 700; }

/* ---------- ship cards / pricing cards ---------- */
.ship { width: min(980px, calc(100vw - 48px)); }
.ship h2 { margin-bottom: 8px; }
.ship .mono-label { display: block; margin-bottom: 28px; }
.ship-cards, .pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--paper);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.card p { font-size: 1.0625rem; line-height: 28px; color: var(--muted); margin: 0; flex: 1; }

/* ---------- marquee ---------- */
.marquee {
  width: 100%; align-self: stretch; overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 16px 0; margin-top: 96px;
}
.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.marquee-track .hand { font-size: 1.875rem; font-weight: 500; padding-right: 0.4em; }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 20px; }
.chip {
  display: inline-flex; padding: 9px 20px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
}
.chip.dashed { border-style: dashed; border-color: var(--dim); }
.chip.pick { cursor: pointer; padding: 0; background: none; border: none; }
.chip.pick input { position: absolute; opacity: 0; pointer-events: none; }
.chip.pick span {
  display: inline-flex; padding: 9px 20px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 999px;
  transition: all 0.15s ease;
}
.chip.pick.dashed span { border-style: dashed; border-color: var(--dim); background: none; }
.chip.pick input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.pick:hover span { border-color: var(--ink); }

/* ---------- context card / form card ---------- */
.context-card {
  width: min(760px, calc(100vw - 48px));
  background: var(--paper);
  border-radius: 4px;
  padding: 48px;
  margin-top: 96px;
}
.context-card h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }

.prompt-block { background: var(--bg); border-radius: 4px; overflow: hidden; margin-top: 28px; }
.prompt-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-bottom: 1px solid var(--rule);
}
.copy-btn {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 500;
  background: none; border: none; color: var(--ink);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}
.prompt-block pre { padding: 22px 20px; overflow-x: auto; }
.prompt-block code {
  font-family: var(--mono); font-size: 0.76rem; line-height: 1.75;
  color: var(--muted); white-space: pre;
}

/* ---------- form ---------- */
#booking-form { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 0.95rem; font-weight: 600; }
.field textarea, .field input {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--rule); border-radius: 4px;
  padding: 14px 16px; resize: vertical;
  transition: border-color 0.15s ease;
}
.field textarea::placeholder, .field input::placeholder { color: var(--dim); }
.field textarea:focus, .field input:focus { outline: none; border-color: var(--ink); }
.chip-fieldset { border: none; }
.chip-fieldset legend { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.chip-fieldset .chips { margin: 12px 0 0; }
.form-status { min-height: 1.4em; font-weight: 500; margin: 0; }

/* ---------- included ---------- */
.included-card {
  width: min(760px, calc(100vw - 48px));
  background: var(--paper); border-radius: 4px; padding: 48px;
  margin-top: 96px;
}
.included-card h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.checks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checks li { position: relative; padding-left: 34px; font-size: 1rem; line-height: 1.6; }
.checks li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: #3baa5c; }

/* ---------- bio ---------- */
.bio { display: flex; flex-direction: column; }
.signature { align-self: flex-start; font-size: 2.625rem; font-weight: 500; margin-top: 12px; transform: rotate(-2deg); display: inline-block; }

/* ---------- pricing ---------- */
.pricing-wrap { width: min(980px, calc(100vw - 48px)); }
.price { font-size: 2.75rem; font-weight: 600; color: var(--strong); }
.price em { font-style: normal; font-size: 1.1rem; color: var(--dim); }
.price-card .btn { margin-top: 12px; }

/* ---------- faq ---------- */
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  font-size: 1.0625rem; font-weight: 600; padding: 18px 0;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--dim); font-size: 1.3rem; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: 1rem; line-height: 27px; padding-bottom: 20px; }

/* ---------- final + footer ---------- */
.final {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  width: min(var(--col), calc(100vw - 48px));
  padding: 110px 0 40px; text-align: center;
}
.footer {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 48px 24px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.footer .dim { color: #000; }

/* oversized bleed wordmark behind the footer */
.footer-mark {
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(4rem, 16.6vw, 15rem);
  line-height: 0.85;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.17);
  white-space: nowrap;
  margin-top: 40px;
  user-select: none;
  pointer-events: none;
}

/* ---------- expert-pass additions ---------- */
.hero-sub {
  font-size: 19px; line-height: 1.4; color: var(--muted);
  text-align: center; max-width: 640px; margin: 0;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.micro-proof { text-align: center; margin: 0; }

.pain { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.pain .serif { max-width: 560px; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.pain-list li { position: relative; padding-left: 32px; color: var(--muted); font-size: 1.0625rem; line-height: 27px; }
.pain-list li::before { content: "✗"; position: absolute; left: 0; font-weight: 700; color: var(--dim); }

.services { width: min(980px, calc(100vw - 48px)); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { position: relative; padding-left: 24px; font-size: 0.95rem; color: var(--muted); }
.service-card ul li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: #3baa5c; }

.proof-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; margin-top: 40px; }

.steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.steps li { position: relative; padding-left: 52px; color: var(--muted); font-size: 1rem; line-height: 27px; counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--mono); font-size: 0.8rem; color: var(--dim);
  border: 1px solid var(--rule); border-radius: 999px; padding: 4px 8px;
}
.steps li strong { color: var(--ink); }

.tier-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--dim); }
.pricing-note {
  margin-top: 28px; max-width: 620px;
  font-size: 0.97rem; color: var(--muted);
  border-left: 3px solid var(--yellow); padding-left: 16px;
}

.fornot { width: min(980px, calc(100vw - 48px)); }
.fornot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.fornot h3 { margin-bottom: 18px; }
.crosses { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.crosses li { position: relative; padding-left: 34px; font-size: 1rem; line-height: 1.6; color: var(--muted); }
.crosses li::before { content: "✗"; position: absolute; left: 0; font-weight: 700; color: var(--dim); }

.final p { color: var(--muted); max-width: 520px; }

.walkaway { margin-top: 96px; }

/* bonus — deliberately quieter than the white cards above it */
.bonus { padding-top: 72px; }
.bonus .mono-label { display: block; margin-bottom: 12px; }
.bonus-title {
  font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--strong); margin-bottom: 18px;
}
.bonus p { color: var(--muted); font-size: 1rem; }
.card-bonus {
  font-size: 0.85rem !important;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  margin-top: 4px;
  flex: none !important;
}
.booking-flow { margin-top: 56px; max-width: 620px; }
.booking-flow h3 { margin-bottom: 8px; }
.booking-flow .steps { margin: 20px 0 16px; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .ship-cards, .pricing { grid-template-columns: 1fr; }
  .fornot-grid { grid-template-columns: 1fr; }
  .context-card, .included-card { padding: 32px 24px; }
  .photo-slot.wide { height: 260px; }
  .sticky { width: 170px; }
}

/* ---------- before/after + pricing expectation ---------- */
.beforeafter h2 { text-align: center; margin-bottom: 36px; }
.ba-line { margin: 44px auto 0; max-width: 520px; }
.pricing-expect { color: var(--muted); max-width: 620px; margin: -12px 0 28px; }

/* hero polaroid photo */
.polaroid-photo { width: min(640px, calc(100vw - 96px)); height: 380px; object-fit: cover; display: block; }
.avatar-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.bio-photo { width: min(560px, calc(100vw - 120px)); height: auto; aspect-ratio: 4 / 3; }
.avatar-photo.big { width: 88px; height: 88px; margin: 0 auto; }
.ai-photo-img { width: 100%; height: 320px; object-fit: cover; border-radius: 0; margin-top: 0; }
.polaroid-ai { margin-top: 32px; transform: rotate(1deg); }

/* ---------- mac-window photo frames (replaces polaroids) ---------- */
.mac-window {
  display: flex; flex-direction: column;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 40px auto 0;
}
.mw-titlebar {
  display: flex; align-items: center;
  padding: 10px 12px;
  background: #f6f6f6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.mw-dot { width: 12px; height: 12px; border-radius: 50%; margin-right: 6px; }
.mw-red { background: #ff5f57; }
.mw-yellow { background: #febc2e; }
.mw-green { background: #28c840; }
.mw-title {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500; color: rgba(60, 60, 67, 0.7);
  white-space: nowrap;
}
.mw-photo { display: block; width: 100%; object-fit: cover; }
.mw-footer {
  padding: 9px 14px;
  background: #f6f6f6;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1.25rem; text-align: center; color: var(--ink);
}
.mw-hero { width: min(672px, calc(100vw - 48px)); }
.mw-hero .mw-photo { height: 400px; }
.mw-ai { width: 100%; margin-top: 32px; }
.mw-ai .mw-photo { height: 320px; }
.mw-bio { width: min(560px, calc(100vw - 48px)); margin-bottom: 40px; }
.mw-bio .mw-photo { aspect-ratio: 4 / 3; }

/* section cards as mac windows */
.mac-card { border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 12px; overflow: hidden; }
.mc-titlebar { margin: -48px -48px 36px; }
@media (max-width: 640px) { .mc-titlebar { margin: -32px -24px 28px; } }

/* equal-width buttons in CTA rows, full width on mobile */
.cta-row .btn, .btn-row .btn { flex: 1 1 0; min-width: 220px; }
.price-card .btn { width: 100%; }
@media (max-width: 560px) {
  .cta-row, .btn-row { width: 100%; }
  .cta-row .btn, .btn-row .btn { flex: 1 1 100%; min-width: 0; }
  #booking-form .btn { width: 100%; }
}

/* hide nav CTA on phones */
@media (max-width: 560px) { .nav-inner > .btn { display: none; } .nav-inner { justify-content: center; } }

/* ---------- visual proof strips ---------- */
.proof-strip { width: min(980px, calc(100vw - 48px)); text-align: center; }
.proof-strip h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.strip-tile { aspect-ratio: 4 / 5; height: auto; border-radius: 4px; }
.strip-caption { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.06em; color: var(--muted); margin: 20px 0 0; }
@media (max-width: 700px) { .strip-grid { grid-template-columns: 1fr; } }

/* collapsed prompt */
.brief-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 0 0 24px; }
.prompt-details summary {
  cursor: pointer; font-weight: 600; font-size: 0.95rem;
  padding: 12px 0; list-style: none; color: var(--ink);
  text-decoration: underline; text-underline-offset: 4px;
}
.prompt-details summary::-webkit-details-marker { display: none; }
.prompt-details .prompt-block { margin-top: 8px; }
@media (max-width: 560px) { .brief-preview { grid-template-columns: 1fr; } }

/* smooth layered shadow (shadow.floriankiem.com style) for all window UI */
:root {
  --window-shadow:
    0 1.1px 1.1px rgba(0, 0, 0, 0.017),
    0 2.7px 2.7px rgba(0, 0, 0, 0.024),
    0 5px 5px rgba(0, 0, 0, 0.03),
    0 8.9px 8.9px rgba(0, 0, 0, 0.036),
    0 16.7px 16.7px rgba(0, 0, 0, 0.043),
    0 40px 40px rgba(0, 0, 0, 0.06);
}
.mac-window, .mac-card { box-shadow: var(--window-shadow); }

/* thesis quote */
.quote-block { transform: none; margin: 0; }
.quote-by { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; }
.quote-avatar { width: 36px; height: 36px; }
.quote-by span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }

/* ---------- calendar-style service cards ---------- */
.cal-card {
  border-radius: 16px;
  padding: 24px 20px;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cal-card:hover { transform: translateY(-4px); box-shadow: var(--window-shadow); }
.cal-title {
  text-align: center;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 2px;
}
.cal-rows { display: flex; flex-direction: column; gap: 8px; }
.cal-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.cal-row:hover { transform: translateX(4px); filter: saturate(1.4); }
.cal-bar { width: 4px; align-self: stretch; border-radius: 2px; flex-shrink: 0; }
.cal-text { font-size: 0.95rem; font-weight: 600; line-height: 1.35; }
.cal-row.amber { background: #fdf3dc; } .cal-row.amber .cal-bar { background: #f0a51f; } .cal-row.amber .cal-text { color: #8a6116; }
.cal-row.green { background: #e7f5df; } .cal-row.green .cal-bar { background: #6fcf3f; } .cal-row.green .cal-text { color: #3e6b22; }
.cal-row.blue { background: #e4f0fb; } .cal-row.blue .cal-bar { background: #4da3f5; } .cal-row.blue .cal-text { color: #1f5b99; }
.cal-row.purple { background: #f0e9fb; } .cal-row.purple .cal-bar { background: #9b5de5; } .cal-row.purple .cal-text { color: #5b3494; }
.cal-row.pink { background: #fbe9f8; } .cal-row.pink .cal-bar { background: #e05fd0; } .cal-row.pink .cal-text { color: #8e2f84; }
.cal-icon { font-size: 0.95rem; line-height: 1; flex-shrink: 0; }
.cal-meta {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.08em; opacity: 0.65;
}
.cal-row.amber .cal-meta { color: #8a6116; }
.cal-row.green .cal-meta { color: #3e6b22; }
.cal-row.blue .cal-meta { color: #1f5b99; }
.cal-row.purple .cal-meta { color: #5b3494; }
.cal-row.pink .cal-meta { color: #8e2f84; }

.cal-icon svg { width: 15px; height: 15px; display: block; }
.cal-row.amber .cal-icon { color: #8a6116; }
.cal-row.green .cal-icon { color: #3e6b22; }
.cal-row.blue .cal-icon { color: #1f5b99; }
.cal-row.purple .cal-icon { color: #5b3494; }
.cal-row.pink .cal-icon { color: #8e2f84; }
.services > h2 { text-align: center; }
/* proof section: centered like neighbors */
.proof { text-align: center; }
.proof h2, .proof > p { max-width: var(--col); margin-left: auto; margin-right: auto; }
.proof .proof-cards { text-align: left; }
.cal-row.teal { background: #e0f4ef; } .cal-row.teal .cal-bar { background: #1d9e75; } .cal-row.teal .cal-text { color: #085041; } .cal-row.teal .cal-meta, .cal-row.teal .cal-icon { color: #085041; }

/* ---------- iMessage before/after (Option B) ---------- */
.imsg-section { display: flex; flex-direction: column; gap: 24px; }
.imsg { padding: 0; }
.imsg-head { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 18px; }
.imsg-app { font-size: 0.85rem; font-weight: 600; color: #8e8e93; }
.imsg-date { font-size: 0.75rem; color: #8e8e93; }
.imsg-thread { display: flex; flex-direction: column; gap: 12px; }
.brow { display: flex; align-items: flex-end; gap: 8px; opacity: 0; transform: translateY(14px) scale(0.96); }
.brow.me { justify-content: flex-end; }
.b-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; position: relative; z-index: 1; }
.b-avatar.b-c {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(to bottom, #a8b0bb, #8a93a0);
  color: #fff; font-size: 0.85rem; font-weight: 600;
}
.bubble {
  position: relative;
  max-width: 72%;
  padding: 9px 15px;
  border-radius: 19px;
  font-size: 1rem; line-height: 1.35;
}
.bubble.them { background: #e9e9eb; color: #111; }
.bubble.me { background: #0b93f6; color: #fff; }
/* iMessage tails */
.bubble.tail.them::before {
  content: ""; position: absolute; left: -7px; bottom: 0;
  width: 20px; height: 20px; background: #e9e9eb;
  border-bottom-right-radius: 15px;
}
.bubble.tail.them::after {
  content: ""; position: absolute; left: -10px; bottom: 0;
  width: 10px; height: 20px; background: var(--bg);
  border-bottom-right-radius: 10px;
}
.bubble.tail.me::before {
  content: ""; position: absolute; right: -7px; bottom: 0;
  width: 20px; height: 20px; background: #0b93f6;
  border-bottom-left-radius: 15px;
}
.bubble.tail.me::after {
  content: ""; position: absolute; right: -10px; bottom: 0;
  width: 10px; height: 20px; background: var(--bg);
  border-bottom-left-radius: 10px;
}
.imsg-read { align-self: flex-end; margin-right: 38px; font-size: 0.72rem; color: #8e8e93; opacity: 0; }
.imsg.play .brow, .imsg.play .imsg-read {
  animation: bubblein 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
}
.imsg.play .brow:nth-child(1) { animation-delay: 0.1s; }
.imsg.play .brow:nth-child(2) { animation-delay: 0.7s; }
.imsg.play .brow:nth-child(3) { animation-delay: 1.3s; }
.imsg.play .brow:nth-child(4) { animation-delay: 1.9s; }
.imsg.play .brow:nth-child(5) { animation-delay: 2.5s; }
.imsg.play .brow:nth-child(6) { animation-delay: 3.1s; }
.imsg.play .brow:nth-child(7) { animation-delay: 3.7s; }
.imsg.play .brow:nth-child(8) { animation-delay: 4.3s; }
.imsg.play .imsg-read { animation-delay: 4.9s; animation-duration: 0.3s; }
@keyframes bubblein { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .brow, .imsg-read { opacity: 1; transform: none; animation: none !important; } }
.imsg-title { font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 3.2vw, 2.5rem); text-align: center; margin-bottom: 4px; }

/* ---------- Apple Notes style proof cards ---------- */
.note-card { border-radius: 18px; padding: 16px 20px 24px; gap: 8px; }
.note-head {
  display: flex; justify-content: space-between; align-items: center;
  color: #d9a412; font-size: 0.85rem; font-weight: 600;
  margin: 0 -4px 10px;
}
.note-back, .note-actions { display: inline-flex; align-items: center; gap: 5px; }
.note-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--dim); }
.note-card h3 { margin-bottom: 4px; }
.note-title { font-size: 1.02rem; font-weight: 600; margin-bottom: 2px; }
.note-card p { font-size: 0.9rem; line-height: 1.55; }
.note-photo { width: 50px; height: 50px; border-radius: 8px; margin: 2px 0 10px; padding: 4px; font-size: 0.42rem; }
.note-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.note-card:hover { transform: translateY(-3px) rotate(-0.4deg); box-shadow: var(--window-shadow); }
.note-photo span { display: none; }

/* ---------- walkaway as Finder icon view ---------- */
.walkaway { background: #fdfdfd; }
.doc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center; align-items: start;
  gap: 32px 20px; padding: 26px 8px 14px;
}
.doc-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 118px; text-align: center;
  transition: transform 0.2s ease;
}
.doc-item:hover { transform: scale(1.06); }
.doc-svg { width: 52px; height: 64px; }
.folder-svg { width: 64px; height: 52px; }
.doc-name {
  font-size: 0.78rem; font-weight: 500; line-height: 1.3; color: var(--ink);
  background: rgba(59, 130, 246, 0.14); border-radius: 4px; padding: 1px 7px;
}
/* Finder walkaway chrome */
.finder-bar { gap: 12px; }
.finder-nav { display: inline-flex; gap: 14px; margin-left: 10px; color: #6f6d69; align-items: center; }
.finder-title { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: #3c3c43; }
.finder-tools { margin-left: auto; display: inline-flex; gap: 14px; color: #8e8e93; align-items: center; }
.finder-bar .mw-title { display: none; }
.doc-name { background: none; border-radius: 0; padding: 0; font-size: 0.76rem; color: var(--ink); }
.finder-path {
  display: flex; align-items: center; gap: 6px;
  margin: 18px -48px -48px; padding: 8px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--sans); font-size: 0.74rem; color: #6f6d69;
}
.finder-path strong { font-weight: 600; color: #3c3c43; }
@media (max-width: 640px) { .finder-path { margin: 18px -24px -32px; } }
.walkaway { width: min(560px, calc(100vw - 48px)); }
.walkaway .doc-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 16px; padding: 34px 8px 22px; }
@media (max-width: 560px) { .walkaway .doc-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- draggable bonus note ---------- */
.proof-cards { position: relative; }
.bonus-note {
  position: absolute; right: -18px; bottom: -52px;
  width: 280px; rotate: 3deg;
  cursor: grab; touch-action: none; user-select: none;
  z-index: 2;
  box-shadow: var(--window-shadow);
  transition: rotate 0.25s ease;
}
.bonus-note:hover { rotate: 0.5deg; }
.bonus-note.dragging { cursor: grabbing; transition: none; }
.bonus-note.springing { transition: transform 0.65s cubic-bezier(0.2, 1.6, 0.3, 1), rotate 0.25s ease; }
@media (max-width: 860px) { .bonus-note { position: static; rotate: 0deg; width: auto; margin-top: 16px; } }
/* Finder icons flow from the left */
.walkaway .doc-grid { justify-items: start; justify-content: start; }
.strip-kicker { display: block; font-size: clamp(1.5rem, 2.9vw, 2.1rem); color: var(--ink); text-align: center; margin-bottom: 16px; line-height: 1.3; }
/* bonus note rides the Finder window corner */
.walkaway-wrap { position: relative; width: min(560px, calc(100vw - 48px)); margin-top: 96px; }
.walkaway-wrap .walkaway { width: 100%; margin-top: 0; }
.walkaway-wrap .bonus-note { right: -70px; bottom: -46px; }
@media (max-width: 860px) { .walkaway-wrap .bonus-note { position: static; margin-top: 16px; } }
.statement {
  display: flex; justify-content: center;
  width: min(760px, calc(100vw - 48px));
  padding: 96px 0 0; text-align: center;
}

/* ---------- sticky notes marquee ---------- */
.sticky-marquee { overflow: hidden; width: 100%; padding: 24px 0 12px; }
.sticky-track {
  display: inline-flex; width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform; backface-visibility: hidden;
}
.sticky-marquee:hover .sticky-track { animation-play-state: paused; }
.sticky-group { display: inline-flex; align-items: flex-start; gap: 28px; padding-right: 28px; }
.sticky-group .sticky { flex-shrink: 0; }
.mat-btn { margin: 20px auto 0; display: table; }
@media (prefers-reduced-motion: reduce) { .sticky-track { animation: none; } }

/* ---------- proof bento ---------- */
.sticky-bento {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; width: 100%; padding: 24px 0 8px;
}
.bento-tile {
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 30px 24px 26px; gap: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bento-tile:hover { transform: translateY(-3px); box-shadow: var(--window-shadow); }
.bento-wide { grid-column: span 2; }
.sticky-num { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1; color: var(--ink); }
.sticky-label { font-family: var(--sans); font-size: 0.88rem; font-weight: 500; color: var(--muted); text-align: left; }
.bento-download .dl-title { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; color: var(--btn-blue); }
.bento-download:hover .dl-title { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 700px) { .sticky-bento { grid-template-columns: 1fr 1fr; } }
.proof-notes { width: min(980px, calc(100vw - 48px)); }
/* minimal brief section (window removed) */
.brief-section .prompt-block { background: #f6f6f4; }
.link-row { display: flex; gap: 28px; margin-top: 24px; }
.link-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--ink);
  text-decoration: underline; text-underline-offset: 4px;
}
.link-btn:hover { color: var(--btn-blue); }

/* ---------- pricing windows ---------- */
.price-window { margin: 0; display: flex; flex-direction: column; }
.pw-body { display: flex; flex-direction: column; gap: 14px; padding: 24px 22px 24px; flex: 1; }
.pw-body .tier-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--dim); }
.pw-price { display: flex; align-items: baseline; gap: 10px; }
.pw-per { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.pw-list { gap: 10px; }
.pw-list li { font-size: 0.92rem; line-height: 1.45; padding-left: 28px; }
.pw-body .card-bonus { font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--rule); padding-top: 12px; margin: auto 0 0; }
.pw-body .btn { margin-top: 4px; }
.fornot .note-card .checks, .fornot .note-card .crosses { font-size: 0.92rem; gap: 10px; }
/* brief chips + prompt peek */
.brief-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 24px; }
.brief-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.85rem; font-weight: 500; color: var(--ink);
}
.brief-chip svg { width: 14px; height: 14px; color: var(--muted); }
.prompt-peek { position: relative; }
.prompt-peek:not(.open) pre { max-height: 150px; overflow: hidden; }
.prompt-peek:not(.open)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, rgba(246, 246, 244, 0), #f6f6f4 85%);
  pointer-events: none;
}
.peek-toggle {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 12px; z-index: 1;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--ink);
  text-decoration: underline; text-underline-offset: 4px;
}
.prompt-peek.open .peek-toggle { position: static; transform: none; display: block; margin: 10px auto 14px; }
/* real strip images */
.strip-tile { overflow: hidden; padding: 0; }
.strip-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strip-split { display: flex; gap: 0; border: none; }
.strip-split img { width: 50%; }

/* ---------- AirDrop frames for strip images ---------- */
.airdrop {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 16px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.airdrop:hover { transform: translateY(-5px) scale(1.015); box-shadow: var(--window-shadow); }
.ad-head {
  padding: 10px 12px; text-align: center;
  font-size: 0.92rem; font-weight: 600; color: #111;
  background: #fafafa; border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}
.airdrop img { flex: 1; min-height: 0; width: 100%; object-fit: cover; }
.ad-actions {
  display: flex; flex-shrink: 0;
  background: #fafafa; border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.ad-actions span {
  flex: 1; text-align: center; padding: 11px 0;
  font-size: 0.95rem; color: #3478f6; cursor: default;
}
.ad-actions span:first-child { border-right: 1px solid rgba(0, 0, 0, 0.07); }
.ad-accept { font-weight: 600; }
/* mat icon in download tile */
.dl-icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 6px; }
.bio-link { margin-top: 18px; align-self: flex-start; }
.footer-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-link:hover { color: var(--ink); }

/* ---------- testimonials (seed-later) ---------- */
.testimonials { width: min(980px, calc(100vw - 48px)); }
.testimonials h2 { text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testi-card { gap: 16px; }
.t-quote { font-size: 0.95rem; color: var(--dim); font-family: var(--mono); }
.t-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-by strong { display: block; font-size: 0.9rem; }
.t-role { font-size: 0.8rem; color: var(--dim); }
.bio-links { display: flex; gap: 24px; margin-top: 18px; }
img.note-photo { object-fit: cover; border: none; padding: 0; }
.note-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f6f4ef; color: #d9a412;
  margin: 2px 0 10px;
}
.note-icon svg { width: 26px; height: 26px; }

/* ---------- motion system (Emil-style: fast, ease-out, transform+opacity only) ---------- */
:root { --ease-out: cubic-bezier(0.25, 1, 0.5, 1); }
.a-init {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: var(--a-delay, 0s);
  will-change: opacity, transform;
}
.a-init.a-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .a-init { opacity: 1; transform: none; transition: none; }
}
/* snappier, consistent hovers */
.nav-links a, .chip, .faq summary::after { transition-duration: 0.15s; }
.folder-svg { transition: transform 0.18s var(--ease-out); }
.doc-item:hover .folder-svg { transform: translateY(-3px); }
