/* ============================================================
   Fashion Freelancing — v8 "Nebula Light"
   Fraunces display (serif) · Inter body
   Soft lavender base · charcoal ink · violet→indigo→cyan accent
   Glass surfaces · glow shadows · matches the homepage (home.css)
   Token names kept from earlier versions so every page re-skins.
   ============================================================ */

:root {
  /* Tone — soft lavender-tinted surfaces (NOT flat white) */
  --paper:   #F4F4FB;   /* lavender base — main background */
  --paper-2: #ECECF7;   /* deeper lavender — alt sections  */
  --paper-3: #FFFFFF;   /* white — cards / wells           */
  --ink:     #14132B;   /* near-black, cool                */
  --ink-2:   #26253F;
  --ink-3:   #3B3A57;
  --ink-4:   #6E6C8A;   /* body / lead text                */
  --ink-5:   #8A88A4;   /* muted                           */
  --ink-6:   #9B99B4;   /* faint                           */
  --ink-7:   #C7C5D8;
  --ink-8:   #E4E3EF;

  --line:    rgba(20,19,43,.09);
  --line-2:  rgba(20,19,43,.14);

  /* Primary accent — violet/indigo. (Kept as --champagne* names so
     every existing class reference re-skins to the new accent.) */
  --champagne:     #5468F5;   /* primary indigo            */
  --champagne-2:   #4453E0;   /* deeper (hover)            */
  --champagne-3:   #3A3AB0;   /* darkest (accent text)     */
  --champagne-50:  #EEEEFE;   /* accent tint bg            */
  --champagne-100: #D9DCFB;   /* accent tint border        */

  /* Secondary accent — cyan */
  --mint:    #2BA8E8;
  --mint-2:  #1E8FC9;
  --mint-3:  #176F9E;
  --mint-50: #E6F5FC;
  --mint-100:#C5E7F7;

  /* Status */
  --green-50: #E7F6EE; --green-700: #1E7A47;
  --blue-50:  #EEEEFE; --blue-700:  #3A3AB0;
  --rose-50:  #FCEAEF; --rose-700:  #C8385C;

  /* Accent gradient — used by buttons, marks, fills */
  --grad: linear-gradient(118deg, #6E56F0 0%, #5468F5 50%, #2BA8E8 100%);

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px;

  --shadow-1: 0 1px 2px rgba(20,19,43,.04), 0 1px 1px rgba(20,19,43,.03);
  --shadow-2: 0 16px 38px -16px rgba(40,40,90,.24);
  --shadow-3: 0 34px 70px -24px rgba(40,40,90,.32);
  --shadow-indigo: 0 16px 38px -14px rgba(84,104,245,.46);

  --container: 1280px;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01","cv11";
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 15px;
  position: relative;
}

/* ---- Site-wide atmosphere: gradient mesh wash + faint grid + grain.
   Fixed behind every page; content sits above via z-index. ---- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(56% 38% at 14% 0%, rgba(110,86,240,.14), transparent 72%),
    radial-gradient(48% 36% at 92% 4%, rgba(43,168,232,.11), transparent 72%),
    linear-gradient(rgba(84,104,245,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84,104,245,.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 64px 64px, 64px 64px;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
/* keep all real content above the atmosphere */
body > * { position: relative; z-index: 1; }

::selection { background: var(--champagne); color: #fff; }

/* ---- Floating glow orbs — reusable. Drop <span class="fx-orb v|c|p">
   inside any position:relative container (esp. .fx-stage heroes). ---- */
.fx-stage { position: relative; overflow: hidden; }
/* every direct child of a stage sits above its orbs */
.fx-stage > *:not(.fx-orb) { position: relative; z-index: 1; }
.fx-orb {
  position: absolute; border-radius: 50%; z-index: 0;
  filter: blur(100px); opacity: .5; pointer-events: none;
  animation: fx-drift 24s ease-in-out infinite;
}
.fx-orb.v { background: radial-gradient(circle, rgba(110,86,240,.6), transparent 70%); }
.fx-orb.c { background: radial-gradient(circle, rgba(43,168,232,.55), transparent 70%); }
.fx-orb.p { background: radial-gradient(circle, rgba(232,110,200,.42), transparent 70%); }
.fx-orb.sm { width: 320px; height: 320px; }
.fx-orb.md { width: 460px; height: 460px; }
.fx-orb.lg { width: 580px; height: 580px; }
@keyframes fx-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(48px,-36px) scale(1.14); }
  66%     { transform: translate(-36px,28px) scale(.92); }
}
@media (prefers-reduced-motion: reduce){ .fx-orb { animation: none; } }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select { font: inherit; }

/* Display — Fraunces (editorial serif, optical-size soft) */
:root {
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}
.display { font-family: var(--font-display); letter-spacing: -0.01em; font-weight: 500; font-optical-sizing: auto; }
.display-italic { font-style: italic; color: var(--champagne); font-family: var(--font-display); }

/* Type scale — serif display, tight but airy */
h1, h2, h3, h4, h5, h6 { margin: 0; letter-spacing: -0.012em; font-weight: 600; font-family: var(--font-display); font-optical-sizing: auto; }
.h-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  font-weight: 500;
}
.h-1 { font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 54px); line-height: 1.08; letter-spacing: -0.018em; font-weight: 500; }
.h-2 { font-family: var(--font-display); font-size: clamp(25px, 3.3vw, 38px); line-height: 1.16; letter-spacing: -0.014em; font-weight: 500; }
.h-3 { font-family: var(--font-display); font-size: 21px; line-height: 1.3; font-weight: 600; letter-spacing: -0.008em; }
.h-4 { font-family: var(--font-body); font-size: 15px; line-height: 1.4; font-weight: 700; letter-spacing: -0.004em; }

.lead { color: var(--ink-4); font-size: 16px; line-height: 1.6; font-weight: 400; }
.muted { color: var(--ink-5); }
.faint { color: var(--ink-6); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--champagne-2); font-weight: 700;
}
.eyebrow::before { content: ""; width: 16px; height: 2px; border-radius: 2px; background: var(--champagne); }

.tabular { font-variant-numeric: tabular-nums; }

/* Accent text/bg helpers */
.champagne { color: var(--champagne); }
.champagne-bg { background: var(--champagne); color: #fff; }
.mint { color: var(--mint-2); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section { padding: 80px 0; }
@media (min-width: 1024px) { .section { padding: 112px 0; } }

.section-tight { padding: 48px 0; }

/* Buttons — ink primary, paper ghost, champagne reserved for CTAs that matter */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 500;
  transition: background .2s var(--easing), color .2s, border-color .2s, transform .15s, box-shadow .2s;
  padding: 12px 22px; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; line-height: 1;
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
/* Primary = indigo (the catchy main action) */
.btn-primary { background: var(--grad); background-size: 160% 160%; color: #fff; box-shadow: var(--shadow-indigo); }
.btn-primary:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(110,86,240,.6); }
/* "Champagne" alias kept for old markup — now also indigo */
.btn-champagne { background: var(--grad); background-size: 160% 160%; color: #fff; border-color: transparent; box-shadow: var(--shadow-indigo); }
.btn-champagne:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(110,86,240,.6); }
/* Ghost = outlined, fills indigo on hover */
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--champagne-50); color: var(--champagne-3); border-color: var(--champagne); }
/* Dark fallback */
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-paper { background: #fff; color: var(--ink); border-color: transparent; }
.btn-paper:hover { background: var(--paper-2); }
.btn-link { padding: 0; background: transparent; color: var(--champagne-2); border-radius: 0; font-weight: 600; }
.btn-link:hover { color: var(--champagne-3); }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Chip / tag */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-2); background: var(--paper); color: var(--ink-3);
  border-radius: 999px; padding: 7px 13px; font-size: 13px; line-height: 1;
  transition: border-color .15s, background .15s, color .15s;
  cursor: pointer; white-space: nowrap;
}
.chip:hover { border-color: var(--champagne); color: var(--champagne-3); }
.chip.active, .chip-active { background: var(--champagne); color: #fff; border-color: var(--champagne); }

/* Pill */
.pill { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; padding: 3px 9px; font-size: 11px; font-weight: 600; line-height: 1.6; letter-spacing: 0.01em; }
.pill-champagne { background: var(--champagne-50); color: var(--champagne-3); border: 1px solid var(--champagne-100); }
.pill-green { background: var(--green-50); color: var(--green-700); border: 1px solid var(--mint-100); }
.pill-blue  { background: var(--blue-50);  color: var(--blue-700);  border: 1px solid var(--champagne-100); }
.pill-ink   { background: var(--champagne); color: #fff; }
.pill-rose  { background: var(--rose-50); color: var(--rose-700); border: 1px solid #f6cdd6; }

/* Card */
/* Glassmorphism card — frosted, gradient hairline edge, hover lift + glow */
.card {
  position: relative;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-1);
  transition: border-color .4s var(--easing), box-shadow .4s var(--easing), transform .4s var(--easing), background .4s var(--easing);
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(110,86,240,.42), rgba(43,168,232,.16) 55%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .45; transition: opacity .4s var(--easing); pointer-events: none;
}
.card-hover:hover {
  border-color: var(--line-2);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-6px);
}
.card-hover:hover::before { opacity: 1; }
.card-pad { padding: 24px; }
.card-pad-lg { padding: 32px; }

/* Form */
.input {
  width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s; font-family: inherit;
}
.input::placeholder { color: var(--ink-6); }
.input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(10,10,10,.06); }

.label { display: block; font-size: 12px; font-weight: 500; color: var(--ink-3); margin-bottom: 6px; letter-spacing: 0.01em; }

/* ------------------ NAV ------------------ */
/* ============================================================
   TOP NAV — clean & minimal · with persistent search & mobile menu
   ============================================================ */
.topnav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,244,251,.66);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px -16px rgba(40,40,90,.4);
  animation: topnav-drop .7s var(--easing) both;
}
/* glowing hairline along the bottom edge */
.topnav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,86,240,.5) 30%, rgba(43,168,232,.5) 70%, transparent);
  opacity: .7; pointer-events: none;
}
@keyframes topnav-drop {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}
/* nav links + cta fade-in, gently staggered */
.topnav-links a, .topnav-cta > * {
  animation: topnav-fade .6s var(--easing) both;
}
.topnav-links a:nth-child(1){ animation-delay:.12s }
.topnav-links a:nth-child(2){ animation-delay:.18s }
.topnav-links a:nth-child(3){ animation-delay:.24s }
.topnav-links a:nth-child(4){ animation-delay:.30s }
.topnav-cta > *:nth-child(1){ animation-delay:.34s }
.topnav-cta > *:nth-child(2){ animation-delay:.40s }
@keyframes topnav-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .topnav, .topnav-links a, .topnav-cta > * { animation: none; }
}

/* ---- Scroll-condense: header shrinks once the page is scrolled ---- */
.topnav {
  transition: background .3s var(--easing), box-shadow .3s var(--easing),
              backdrop-filter .3s var(--easing);
}
.topnav-inner {
  display: flex; align-items: center; gap: 18px;
  height: 80px;
  transition: height .32s var(--easing);
}
@media (min-width: 1024px) {
  .topnav-inner { gap: 24px; }
}
/* condensed state — toggled by site.js on scroll */
.topnav.is-scrolled {
  background: rgba(244,244,251,.86);
  box-shadow: 0 8px 30px -14px rgba(40,40,90,.5);
}
.topnav.is-scrolled .topnav-inner { height: 60px; }
/* logo + search ease down a touch when condensed */
.topnav .logo svg { transition: transform .32s var(--easing); }
.topnav.is-scrolled .logo svg { transform: scale(.9); }
.topnav.is-scrolled .topnav-search { height: 38px; }
.topnav-search { transition: height .32s var(--easing); }

/* Logo (with proper SVG mark) */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity .15s;
}
.logo:hover { opacity: 0.8; }
.logo svg { display: block; }
/* gradient tile mark — used by footer + auth pages (<span class="logo-mark">F</span>) */
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(84,104,245,.5);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.logo-text span {
  color: var(--champagne-2);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 460;
  margin-left: 1px;
}

/* Persistent search in header (desktop) */
.topnav-search {
  display: none;
  align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 10px 0 12px;
  height: 38px;
  flex: 1;
  max-width: 380px;
  color: var(--ink-5);
  transition: border-color .15s, box-shadow .15s;
}
.topnav-search:hover { border-color: var(--ink-6); }
.topnav-search:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(10,10,10,.05); }
.topnav-search svg { color: var(--ink-5); flex-shrink: 0; }
.topnav-search input {
  flex: 1; min-width: 0;
  border: 0; outline: 0; background: transparent;
  font-size: 13px;
  color: var(--ink);
  padding: 0;
  height: 100%;
}
.topnav-search input::placeholder { color: var(--ink-6); }
.topnav-search kbd {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: var(--ink-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 5px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .topnav-search { display: flex; } }

/* Primary links (desktop) */
.topnav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  margin-left: auto;
}
.topnav-links a {
  color: var(--ink-3);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .15s;
}
.topnav-links a:hover { color: var(--ink); }
.topnav-links a.active { color: var(--ink); font-weight: 500; }
.topnav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -24px;
  height: 2px;
  background: var(--ink);
}
@media (min-width: 1100px) { .topnav-links { display: flex; } }

/* Right-side CTAs */
.topnav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  flex-shrink: 0;
}
.topnav-signin {
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
  padding: 4px 8px;
  transition: color .15s;
}
.topnav-signin:hover { color: var(--ink); }
@media (min-width: 768px) { .topnav-cta { display: flex; } }

/* On mobile: search hides, links hide, CTAs hide; only logo + burger */
@media (max-width: 767px) {
  .topnav-search:not(.topnav-search-mobile) { display: none; }
}

/* Hamburger button */
.topnav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  padding: 0;
  transition: border-color .3s var(--easing), box-shadow .3s var(--easing), transform .3s var(--easing);
}
.topnav-burger:hover {
  border-color: rgba(110,86,240,.5);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-1px);
}
.topnav-burger span {
  width: 16px; height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform .3s var(--easing), opacity .2s, background .2s;
}
.topnav-burger.is-open span { background: var(--champagne-2); }
.topnav-burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.topnav-burger.is-open span:nth-child(2) { opacity: 0; }
.topnav-burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (min-width: 1100px) { .topnav-burger { display: none; } }

/* Mobile slide-out menu — glass panel */
.topnav-mobile {
  position: fixed;
  top: 80px; left: 0; right: 0;
  bottom: 0;
  background: rgba(244,244,251,.92);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  z-index: 59;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .35s var(--easing), visibility .35s, transform .35s var(--easing), top .32s var(--easing);
}
/* mobile menu is nested inside .topnav — track the condensed height */
.topnav.is-scrolled .topnav-mobile { top: 60px; }
.topnav-mobile.is-open { visibility: visible; opacity: 1; transform: none; }
/* a glow orb drifting behind the mobile menu */
.topnav-mobile::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,86,240,.34), transparent 70%);
  filter: blur(80px); pointer-events: none;
}
/* links cascade in when the menu opens */
.topnav-mobile.is-open .topnav-mobile-links a {
  animation: m-link-in .5s var(--easing) both;
}
.topnav-mobile.is-open .topnav-mobile-links a:nth-child(1){ animation-delay:.08s }
.topnav-mobile.is-open .topnav-mobile-links a:nth-child(2){ animation-delay:.14s }
.topnav-mobile.is-open .topnav-mobile-links a:nth-child(3){ animation-delay:.20s }
.topnav-mobile.is-open .topnav-mobile-links a:nth-child(4){ animation-delay:.26s }
.topnav-mobile.is-open .topnav-mobile-links a:nth-child(5){ animation-delay:.32s }
@keyframes m-link-in {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .topnav-mobile.is-open .topnav-mobile-links a { animation: none; }
}
.topnav-mobile-inner {
  position: relative; z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  overflow-y: auto;
}
.topnav-search-mobile {
  display: flex !important;
  height: 44px;
  max-width: none;
}
.topnav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.topnav-mobile-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 16px;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .25s var(--easing), border-color .25s var(--easing), transform .25s var(--easing);
}
.topnav-mobile-links a::after {
  content: "→"; color: var(--champagne-2); opacity: 0;
  transform: translateX(-6px); transition: opacity .25s, transform .25s var(--easing);
}
.topnav-mobile-links a:hover, .topnav-mobile-links a:active {
  background: rgba(255,255,255,.7);
  border-color: var(--line-2);
  transform: translateX(4px);
}
.topnav-mobile-links a:hover::after { opacity: 1; transform: none; }
.topnav-mobile-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1100px) {
  .topnav-mobile { display: none; }
}

/* ------------------ HERO ------------------ */

.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 88px 0 96px; } }

/* The signature silk-mesh gradient — slow, organic, paper tones */
.silk-mesh {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.silk-mesh::before, .silk-mesh::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.55; animation: mesh-drift 28s ease-in-out infinite;
}
.silk-mesh::before {
  top: -10%; left: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle at 30% 30%, var(--champagne) 0%, rgba(84,104,245,0) 60%);
}
.silk-mesh::after {
  bottom: -20%; right: -5%; width: 55vw; height: 55vw;
  background: radial-gradient(circle at 50% 50%, var(--mint) 0%, rgba(43,182,115,0) 60%);
  animation-direction: reverse; animation-duration: 36s;
}
@keyframes mesh-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(8%, -6%) scale(1.08); }
  66% { transform: translate(-6%, 6%) scale(.94); }
}

.hero-inner { position: relative; z-index: 2; }

/* Audience-fork chip strip (above headline) */
.fork-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px 7px 8px; font-size: 13px; backdrop-filter: blur(10px); }
.fork-chip .dot { width: 7px; height: 7px; border-radius: 99px; background: var(--champagne-2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(.85); } }

/* The big rotating-placeholder search */
.hero-search {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 8px 8px 22px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 30px 60px -30px rgba(0,0,0,.18);
  position: relative;
}
.hero-search svg { color: var(--ink-5); flex-shrink: 0; }
.hero-search input {
  flex: 1; border: 0; outline: none; padding: 14px 4px;
  font-size: 16px; background: transparent; min-width: 0;
}
.hero-search input::placeholder { color: var(--ink-5); }

/* Audience fork buttons (the primary call) */
.fork-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.fork-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px 14px 18px; border-radius: 999px;
  font-weight: 500; font-size: 15px; cursor: pointer;
  transition: all .25s var(--easing); border: 1px solid;
  white-space: nowrap;
}
.fork-btn .icon { width: 28px; height: 28px; border-radius: 99px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.fork-btn.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.fork-btn.primary .icon { background: var(--champagne); color: var(--ink); }
.fork-btn.primary:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,.45); }
.fork-btn.secondary { background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--line-2); backdrop-filter: blur(10px); }
.fork-btn.secondary .icon { background: var(--ink); color: var(--paper); }
.fork-btn.secondary:hover { background: #fff; transform: translateY(-2px); border-color: var(--ink); box-shadow: var(--shadow-2); }

/* Hero stats strip */
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; padding-top: 12px; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats .num { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.hero-stats .lbl { font-size: 12px; color: var(--ink-5); margin-top: 4px; letter-spacing: 0.02em; }

/* Marquee logo wall (mono → color on hover) */
.marquee-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee { display: flex; gap: 64px; animation: marquee 40s linear infinite; align-items: center; }
.marquee-track:hover .marquee { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500; font-size: 22px;
  color: var(--ink-6); white-space: nowrap; letter-spacing: 0.02em;
  transition: color .25s;
}
.brand-name:hover { color: var(--ink); }
.brand-name.italic { font-style: italic; }

/* ------------------ HORIZONTAL TALENT CAROUSEL ------------------ */

.talent-rail-wrap { position: relative; }
.talent-rail {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory;
  padding: 8px 0 24px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.talent-rail::-webkit-scrollbar { display: none; }
.talent-rail .talent {
  flex: 0 0 280px; scroll-snap-align: start;
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line);
  transition: transform .3s var(--easing), box-shadow .3s;
}
.talent-rail .talent:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.talent-rail .talent .img { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.talent-rail .talent .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--easing); }
.talent-rail .talent:hover .img img { transform: scale(1.06); }
.talent-rail .talent .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.78) 100%);
  pointer-events: none;
}
.talent-rail .talent .meta {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; color: var(--paper);
}
.talent-rail .talent .meta .name { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.talent-rail .talent .meta .row { display: flex; justify-content: space-between; align-items: end; gap: 8px; margin-top: 6px; font-size: 12px; opacity: 0.92; }
.talent-rail .talent .top-pill { position: absolute; top: 12px; left: 12px; z-index: 2; }
.talent-rail .talent .save {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 999px;
  background: rgba(255,255,255,.85); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px); transition: background .15s, transform .15s;
}
.talent-rail .talent .save:hover { background: #fff; transform: scale(1.06); }
.talent-rail .talent .ratebar {
  position: absolute; top: 14px; right: 56px; z-index: 2;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}

.rail-controls { position: absolute; right: 0; top: -56px; display: flex; gap: 6px; }
.rail-btn {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all .15s; color: var(--ink);
}
.rail-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rail-btn[disabled] { opacity: .35; pointer-events: none; }

/* ------------------ NUMBERED CHAPTERS ------------------ */

.chapter {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px;
  padding: 56px 0; border-top: 1px solid var(--line); align-items: center;
}
.chapter:first-child { border-top: 0; }
@media (max-width: 900px) {
  .chapter { grid-template-columns: 1fr; gap: 28px; }
}
.chapter .num {
  font-family: var(--font-display); font-size: 96px; line-height: 1;
  font-weight: 300; letter-spacing: -0.05em; color: var(--ink-7);
  font-variation-settings: "SOFT" 100;
}
.chapter .title { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 480; margin-top: 8px; }
.chapter .copy { color: var(--ink-4); font-size: 16px; line-height: 1.55; max-width: 460px; margin-top: 16px; }

/* Annotated UI screenshot */
.ui-frame {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-3);
}
.ui-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.ui-bar .dot { width: 9px; height: 9px; border-radius: 99px; background: var(--ink-7); }
.ui-bar .crumb { margin-left: 14px; font-size: 12px; color: var(--ink-5); font-family: ui-monospace, monospace; }

.ui-body { padding: 18px; min-height: 280px; }

.annotation {
  position: absolute; pointer-events: none; z-index: 5;
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  color: var(--ink-3); font-size: 18px; line-height: 1.2;
  transform: rotate(-2deg);
}
.annotation::before {
  content: ""; position: absolute; width: 60px; height: 26px;
  border-left: 1px dashed var(--ink-4); border-bottom: 1px dashed var(--ink-4);
  border-bottom-left-radius: 14px;
  left: -54px; top: 6px;
}

/* ------------------ BENTO ------------------ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; gap: 16px; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
.bento-cell {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  position: relative; overflow: hidden; padding: 22px;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.bento-cell:hover { border-color: var(--ink-7); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.bento .lg { grid-column: span 4; grid-row: span 2; }
.bento .md { grid-column: span 2; grid-row: span 2; }
.bento .sm { grid-column: span 2; }
.bento .xl { grid-column: span 6; grid-row: span 1; }
.bento-cell h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.bento-cell .desc { color: var(--ink-4); font-size: 14px; margin-top: 6px; }
.bento-cell .ico { width: 32px; height: 32px; border-radius: 8px; background: var(--paper-2); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.bento .lg .ico { background: var(--champagne); color: var(--ink); }

/* ------------------ EDITORIAL ------------------ */
.editorial-block {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .editorial-block { grid-template-columns: 1fr; gap: 32px; } }
.editorial-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden; background: var(--paper-2); }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; }
.editorial-quote { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; letter-spacing: -0.025em; font-weight: 460; }
.editorial-quote em { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; color: var(--champagne-2); }
.editorial-byline { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.editorial-byline .who { font-weight: 500; }
.editorial-byline .where { font-size: 13px; color: var(--ink-5); margin-top: 2px; font-family: var(--font-display); font-style: italic; font-size: 14px; }

/* ------------------ BRIEF TABLE ------------------ */

.brief-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.brief-row {
  display: grid; grid-template-columns: 1.6fr 0.7fr 0.6fr 0.5fr 0.5fr;
  gap: 16px; padding: 18px 22px;
  border-top: 1px solid var(--line); align-items: center;
  transition: background .15s; cursor: pointer;
}
.brief-row:first-of-type { border-top: 0; }
.brief-row:hover { background: var(--paper-2); }
.brief-head {
  display: grid; grid-template-columns: 1.6fr 0.7fr 0.6fr 0.5fr 0.5fr;
  gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-5); font-weight: 500;
}
@media (max-width: 800px) {
  .brief-row, .brief-head { grid-template-columns: 1fr; }
  .brief-head > *:nth-child(n+2) { display: none; }
  .brief-row > *:nth-child(n+2) { font-size: 13px; color: var(--ink-5); }
}

/* Brand mark */
.brandmark { width: 38px; height: 38px; border-radius: 9px; background: var(--paper-2); color: var(--ink); display: inline-flex; align-items:center; justify-content:center; font-weight: 700; font-size: 11px; flex-shrink: 0; letter-spacing: -0.02em; border: 1px solid var(--line); }

/* Avatar */
.avatar { width: 36px; height: 36px; border-radius: 999px; object-fit: cover; flex-shrink: 0; background: var(--paper-2); }

/* Stat slab */
.stat-slab {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat-slab > div { padding: 36px 16px; text-align: left; border-right: 1px solid var(--line); }
.stat-slab > div:last-child { border-right: 0; }
.stat-slab .num { font-family: var(--font-display); font-size: clamp(40px, 4.4vw, 60px); font-weight: 460; line-height: 1; letter-spacing: -0.04em; }
.stat-slab .lbl { font-size: 13px; color: var(--ink-5); margin-top: 8px; }
@media (max-width: 700px) { .stat-slab { grid-template-columns: repeat(2, 1fr); } .stat-slab > div:nth-child(2) { border-right: 0; } .stat-slab > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } }
.pricing .plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; position: relative; }
.pricing .plan.featured { border-color: var(--ink); box-shadow: 0 24px 56px -24px rgba(0,0,0,.18); }
.pricing .price { font-family: var(--font-display); font-size: 44px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.pricing .price small { color: var(--ink-5); font-size: 14px; font-weight: 400; }
.pricing ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.pricing li { display: flex; gap: 10px; }
.pricing li::before { content: "✓"; color: var(--champagne-2); font-weight: 700; }

/* FAQ */
details.faq { padding: 18px 0; border-top: 1px solid var(--line); }
details.faq:first-of-type { border-top: 0; }
details.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 500; font-size: 16px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--ink-5); font-size: 22px; transition: transform .2s; line-height: 1; font-weight: 300; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { color: var(--ink-4); font-size: 14px; line-height: 1.65; margin: 12px 0 0; max-width: 720px; }

/* Footer */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.footer h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-5); margin-bottom: 14px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer li a { color: var(--ink-3); font-size: 14px; }
.footer li a:hover { color: var(--ink); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--ink-5); }
.footer-bottom a { color: var(--ink-5); }
.footer-bottom a:hover { color: var(--ink); }

/* Plate (image card) */
.plate { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--paper-2); }
.plate img { width: 100%; height: auto; display: block; transition: transform .6s var(--easing); }
.plate:hover img { transform: scale(1.03); }

/* Masonry */
.masonry { column-count: 4; column-gap: 14px; }
@media (max-width: 1024px) { .masonry { column-count: 3; } }
@media (max-width: 640px) { .masonry { column-count: 2; } }
.masonry .plate { break-inside: avoid; margin-bottom: 14px; }

/* Underline link */
.ulink { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.ulink .arrow { transition: transform .2s; }
.ulink:hover .arrow { transform: translateX(3px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .8s var(--easing), transform .8s var(--easing); }
.reveal.in { opacity: 1; transform: none; }

/* Auth split */
.auth-split { min-height: 100vh; display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .auth-split { grid-template-columns: 1fr 1fr; } }
.auth-pane { display: flex; flex-direction: column; padding: 32px 24px; }
@media (min-width: 1024px) { .auth-pane { padding: 40px 64px; } }
.auth-side { display: none; position: relative; overflow: hidden; background: var(--paper-2); }
@media (min-width: 1024px) { .auth-side { display: block; } }
.auth-side img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .silk-mesh::before, .silk-mesh::after { animation: none !important; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-7); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-6); }

/* Spacing utilities */
.mt-2{margin-top:8px}.mt-3{margin-top:12px}.mt-4{margin-top:16px}.mt-6{margin-top:24px}.mt-8{margin-top:32px}.mt-10{margin-top:40px}.mt-12{margin-top:48px}.mt-16{margin-top:64px}
.mb-2{margin-bottom:8px}.mb-4{margin-bottom:16px}.mb-6{margin-bottom:24px}.mb-8{margin-bottom:32px}
.flex{display:flex}.items-center{align-items:center}.items-end{align-items:flex-end}.justify-between{justify-content:space-between}.justify-center{justify-content:center}
.gap-2{gap:8px}.gap-3{gap:12px}.gap-4{gap:16px}.gap-6{gap:24px}.gap-8{gap:32px}
.text-sm{font-size:13px}.text-xs{font-size:12px}
.flex-wrap{flex-wrap:wrap}
.text-center{text-align:center}
.w-full{width:100%}

/* ============================================================
   HOMEPAGE v4 — live ticker + animated workflow demo
   ============================================================ */

/* Live activity ticker (above hero) */
.ticker-bar {
  background: var(--ink); color: var(--paper);
  font-size: 13px; padding: 9px 0; overflow: hidden;
  border-bottom: 1px solid var(--ink-3);
}
.ticker-track { display: flex; gap: 56px; animation: marquee 50s linear infinite; align-items: center; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; opacity: 0.85; }
.ticker-item .live-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--champagne); animation: pulse 1.6s ease-in-out infinite; }
.ticker-item strong { font-weight: 600; color: var(--paper); }
.ticker-item .arrow { color: var(--champagne); }

/* Hero v4 — split, bigger headline, live demo on the right */
.hero-v4 {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .hero-v4 { padding: 88px 0 112px; } }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
@media (min-width: 1100px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.hero-headline {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 480;
}
.hero-headline .word-italic { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; color: var(--ink-3); display: inline-block; }
.hero-headline .word-accent { color: var(--champagne-2); }

.hero-fork {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 14px; background: rgba(255,255,255,.7); border: 1px solid var(--line);
  border-radius: 18px; backdrop-filter: blur(10px); margin-top: 32px;
  max-width: 520px;
}
.hero-fork .fb {
  flex: 1 1 220px; padding: 18px 20px; border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; transition: all .25s var(--easing);
  text-align: left; border: 1px solid transparent;
  min-width: 0;
}
.hero-fork .fb .ico { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-fork .fb .lbl { font-weight: 600; font-size: 15px; line-height: 1.2; }
.hero-fork .fb .sub { font-size: 12px; color: var(--ink-5); margin-top: 2px; }
.hero-fork .fb.primary { background: var(--ink); color: var(--paper); }
.hero-fork .fb.primary .ico { background: var(--champagne); color: var(--ink); }
.hero-fork .fb.primary .sub { color: var(--ink-7); }
.hero-fork .fb.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,.45); }
.hero-fork .fb.secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.hero-fork .fb.secondary .ico { background: var(--paper-2); color: var(--ink); }
.hero-fork .fb.secondary:hover { transform: translateY(-2px); border-color: var(--ink); box-shadow: var(--shadow-2); }

.hero-search-mini {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 6px 6px 18px;
  margin-top: 18px; max-width: 520px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.hero-search-mini svg { color: var(--ink-5); flex-shrink: 0; }
.hero-search-mini input {
  flex: 1; border: 0; outline: none; padding: 12px 4px;
  font-size: 14px; background: transparent; min-width: 0;
}
.hero-search-mini input::placeholder { color: var(--ink-5); }

.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-top: 28px; font-size: 13px; color: var(--ink-5); }
.hero-trust .star { color: var(--champagne-2); margin-right: 4px; }
.hero-trust .avs { display: inline-flex; }
.hero-trust .avs img { width: 26px; height: 26px; border-radius: 99px; border: 2px solid var(--paper); margin-left: -8px; object-fit: cover; }
.hero-trust .avs img:first-child { margin-left: 0; }

/* The animated workflow demo (right side of hero) — the "stop scrolling" moment */
.workflow-demo {
  position: relative; aspect-ratio: 1; max-width: 560px; margin-left: auto;
  border-radius: 24px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.22);
  overflow: hidden;
}
.workflow-demo .wd-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.workflow-demo .wd-bar .dot { width: 9px; height: 9px; border-radius: 99px; background: var(--ink-7); }
.workflow-demo .wd-bar .crumb { margin-left: 12px; font-size: 12px; color: var(--ink-5); font-family: ui-monospace, monospace; }
.workflow-demo .wd-body { padding: 18px; height: calc(100% - 45px); display: flex; flex-direction: column; gap: 14px; }

/* Stage rail (animated highlight) */
.wd-stages { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-5); flex-wrap: wrap; }
.wd-stages .stg { padding: 5px 10px; border-radius: 99px; background: var(--paper-2); transition: all .4s var(--easing); }
.wd-stages .stg.is-active { background: var(--ink); color: var(--paper); }
.wd-stages .sep { color: var(--ink-7); font-weight: 700; }

/* Mini kanban */
.wd-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; flex: 1; min-height: 0; }
.wd-col { background: var(--paper); border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 8px; min-height: 0; }
.wd-col .col-h { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-5); display: flex; justify-content: space-between; }
.wd-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px; font-size: 12px; line-height: 1.3;
  transition: transform .4s var(--easing), box-shadow .4s, border-color .4s;
}
.wd-card.is-moving { animation: card-fly 2s ease-in-out forwards; }
.wd-card .code { font-family: ui-monospace, monospace; font-size: 10px; color: var(--ink-5); margin-bottom: 4px; }
.wd-card .pill-row { margin-top: 6px; display: flex; align-items: center; gap: 6px; font-size: 10px; }

@keyframes card-fly {
  0%   { transform: translate(0, 0); }
  60%  { transform: translate(110%, -10px) scale(1.03); box-shadow: 0 12px 28px -10px rgba(84,104,245,.5); border-color: var(--champagne); }
  100% { transform: translate(110%, 0); box-shadow: var(--shadow-1); }
}

/* Status update floating in */
.wd-toast {
  position: absolute; bottom: 18px; right: 18px; left: 18px;
  background: var(--ink); color: var(--paper); border-radius: 12px;
  padding: 12px 14px; font-size: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.5);
  transform: translateY(120%); opacity: 0;
  transition: transform .55s var(--easing), opacity .35s;
  z-index: 6;
}
.wd-toast.show { transform: translateY(0); opacity: 1; }
.wd-toast .tdot { width: 8px; height: 8px; border-radius: 99px; background: var(--champagne); flex-shrink: 0; }
.wd-toast strong { color: var(--paper); }
.wd-toast .amt { margin-left: auto; font-family: var(--font-display); font-weight: 500; color: var(--champagne); }

/* Stage progression below kanban */
.wd-progress { height: 4px; background: var(--paper-2); border-radius: 99px; overflow: hidden; }
.wd-progress > div { height: 100%; background: linear-gradient(90deg, var(--champagne), var(--champagne-2)); width: 0%; transition: width 1.6s var(--easing); }

/* Premium category strip — scrollable, image-led */
.cat-strip { display: flex; gap: 14px; overflow-x: auto; padding: 4px 0 8px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-tile {
  flex: 0 0 240px; aspect-ratio: 4/5; scroll-snap-align: start;
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--paper-2); cursor: pointer;
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--easing); }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,.85)); }
.cat-tile .tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11px; font-family: ui-monospace, monospace; color: var(--paper); background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25); padding: 4px 8px; border-radius: 99px; backdrop-filter: blur(8px); }
.cat-tile .meta { position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 2; color: var(--paper); }
.cat-tile .meta .nm { font-family: var(--font-display); font-size: 22px; font-weight: 480; line-height: 1.05; letter-spacing: -0.02em; }
.cat-tile .meta .ct { font-size: 12px; opacity: 0.85; margin-top: 4px; }

/* Compact section variant */
.section-tight { padding: 56px 0; }
@media (min-width: 1024px) { .section-tight { padding: 80px 0; } }

/* ============================================================
   v5 — Plain-English flow components
   ============================================================ */

/* The two big choice cards on the homepage */
.path-card-v2 {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  transition: all .25s var(--easing);
  position: relative;
  overflow: hidden;
}
.path-card-v2:hover {
  border-color: var(--ink);
  box-shadow: 0 24px 56px -16px rgba(0,0,0,.18);
  transform: translateY(-4px);
}
.path-card-v2 .emoji {
  font-size: 36px;
  line-height: 1;
}
.path-card-v2.work {
  background: linear-gradient(135deg, var(--champagne-50) 0%, #fff 60%);
  border-color: var(--champagne-100);
}
.path-card-v2.work:hover {
  border-color: var(--champagne-2);
  box-shadow: 0 24px 56px -16px rgba(84,104,245,.4);
}
.path-card-v2 .arrow {
  display: inline-block;
  transition: transform .2s;
}
.path-card-v2:hover .arrow { transform: translateX(4px); color: var(--ink); }

/* 3-step "How it works" cards */
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}

/* Simple person card (homepage featured) */
.person-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all .15s;
}
.person-card:hover {
  border-color: var(--ink-7);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.person-card .img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.person-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--easing);
}
.person-card:hover .img img { transform: scale(1.05); }
.person-card .body { padding: 14px; }

/* ============================================================
   FIVERR-FOR-FASHION patterns: services grid, gig cards
   ============================================================ */

/* Service category grid (homepage) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.svc-tile {
  position: relative; overflow: hidden;
  border-radius: 14px; aspect-ratio: 5/6;
  background: var(--paper-2); cursor: pointer;
  transition: transform .25s var(--easing);
}
.svc-tile:hover { transform: translateY(-3px); }
.svc-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--easing);
  filter: grayscale(.1);
}
.svc-tile:hover img { transform: scale(1.06); filter: none; }
.svc-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,.85) 100%);
}
.svc-tile .meta {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  z-index: 2; color: var(--paper);
}
.svc-tile .meta .nm {
  font-family: var(--font-display); font-size: 19px; font-weight: 480;
  letter-spacing: -0.02em; line-height: 1.1;
}
.svc-tile .meta .ct { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.svc-tile .from {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--ink);
  border-radius: 99px; padding: 4px 10px; font-size: 11px; font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Group nav (sticky chip strip) */
.group-nav {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 8px 0; scrollbar-width: none;
  position: sticky; top: 64px; z-index: 30;
  background: rgba(250,250,247,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.group-nav::-webkit-scrollbar { display: none; }
.group-nav .chip { padding: 8px 16px; font-size: 13px; }

/* Gig card (used on marketplace, profile, dashboard) */
.gig {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.gig:hover { border-color: var(--ink-7); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.gig .img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--paper-2); }
.gig .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--easing); }
.gig:hover .img img { transform: scale(1.05); }
.gig .body { padding: 14px; }
.gig .body .by { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.gig .body .by img { width: 22px; height: 22px; border-radius: 99px; object-fit: cover; }
.gig .body .ttl { margin-top: 8px; font-size: 14px; font-weight: 500; line-height: 1.4; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gig .body .row { margin-top: 10px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.gig .body .row .star { color: var(--champagne-2); }
.gig .body .row .from { color: var(--ink-5); font-size: 11px; }
.gig .body .row .from b { color: var(--ink); font-size: 14px; font-weight: 600; margin-left: 2px; }

/* Tier card (for gig detail page) */
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px;
}
.tier.featured { border-color: var(--ink); position: relative; box-shadow: 0 24px 56px -24px rgba(0,0,0,.18); }
.tier .tier-head { display: flex; justify-content: space-between; align-items: baseline; }
.tier .name { font-weight: 600; }
.tier .pr { font-family: var(--font-display); font-size: 32px; font-weight: 480; letter-spacing: -0.025em; line-height: 1; margin-top: 12px; }
.tier ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.tier li { display: flex; gap: 8px; color: var(--ink-3); }
.tier li::before { content: "✓"; color: var(--ink-3); }
.tier li.no { color: var(--ink-6); text-decoration: line-through; }
.tier li.no::before { content: "—"; color: var(--ink-7); text-decoration: none; }

/* Order pipeline (replaces kanban) */
.order-steps { display: flex; gap: 0; align-items: center; }
.order-steps .step {
  flex: 1; padding: 12px 14px;
  background: var(--paper-2); border: 1px solid var(--line);
  font-size: 12px; color: var(--ink-5);
  display: flex; align-items: center; gap: 8px;
}
.order-steps .step:first-child { border-radius: 10px 0 0 10px; }
.order-steps .step:last-child { border-radius: 0 10px 10px 0; }
.order-steps .step + .step { border-left: 0; }
.order-steps .step.done { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.order-steps .step.cur { background: var(--champagne-50); color: var(--champagne-3); border-color: var(--champagne-100); font-weight: 500; }
.order-steps .step .dot { width: 8px; height: 8px; border-radius: 99px; background: currentColor; opacity: .7; flex-shrink: 0; }

/* ============================================================
   ANIMATIONS — scroll reveal · skeleton · transitions
   ============================================================ */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton pulse for loading states */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 50%, var(--paper-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 8px;
}

/* Subtle fade-in for newly-loaded content */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .4s cubic-bezier(.2,.8,.2,1); }

/* Hover lift for interactive cards */
.lift { transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s; }
.lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }

/* Button press */
.btn:active, .chip:active { transform: scale(.97); }

/* Subtle pulse for "live" dots */
@keyframes ff-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(.85); }
}
.live-dot {
  animation: ff-pulse 1.6s ease-in-out infinite;
}

/* Page-level fade on load */
body { animation: fadeInUp .35s cubic-bezier(.2,.8,.2,1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .skeleton, .fade-in-up, body { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .live-dot { animation: none !important; }
}

/* ============================================================
   v4 DESIGN SYSTEM — "2030 AI" polish layer
   Glassmorphism · aurora · gradient borders · micro-interactions
   ============================================================ */

/* ---- Aurora / mesh background (tasteful, for hero & CTA sections) ---- */
.aurora {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .42;
  animation: aurora-float 22s ease-in-out infinite;
}
.aurora::before {
  width: 46vw; height: 46vw; top: -14%; left: -8%;
  background: radial-gradient(circle, var(--champagne) 0%, transparent 65%);
}
.aurora::after {
  width: 42vw; height: 42vw; bottom: -18%; right: -6%;
  background: radial-gradient(circle, var(--mint) 0%, transparent 65%);
  animation-direction: reverse; animation-duration: 30s;
}
@keyframes aurora-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(7%,-5%) scale(1.12); }
  66%  { transform: translate(-5%,6%) scale(.92); }
}

/* ---- Glass surfaces ---- */
.glass {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6);
}
.glass-dark {
  background: rgba(20,21,42,.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.08);
}

/* ---- Gradient-border card (the catchy "featured" treatment) ---- */
.gradient-border {
  position: relative; border-radius: var(--r-xl); background: #fff;
  background-clip: padding-box; border: 1px solid transparent;
}
.gradient-border::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--champagne), var(--mint), var(--champagne));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: gb-shift 6s linear infinite;
}
@keyframes gb-shift { to { background-position: 200% 200%; } }

/* ---- Spotlight cursor glow (add data-spotlight to any card) ---- */
.spotlight { position: relative; overflow: hidden; }
.spotlight::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  border-radius: inherit;
  opacity: 0; transition: opacity .4s var(--easing);
  background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%),
    rgba(110,86,240,.15), transparent 62%);
}
.spotlight:hover::after { opacity: 1; }

/* ---- Magnetic / springy buttons ---- */
.btn { transition: background .2s var(--easing), color .2s, border-color .2s,
  transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s; }
.btn-primary:hover, .btn-champagne:hover { transform: translateY(-2px) scale(1.02); }

/* ---- Lift card ---- */
.lift-card { transition: transform .3s var(--easing), box-shadow .3s var(--easing); }
.lift-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }

/* ---- Animated gradient text ---- */
.gradient-text {
  background: linear-gradient(120deg, var(--champagne) 0%, var(--mint) 50%, var(--champagne) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gt-shift 5s linear infinite;
}
@keyframes gt-shift { to { background-position: 200% center; } }

/* ---- Shimmer skeleton (refined) ---- */
.skeleton {
  background: linear-gradient(100deg, var(--paper-2) 30%, var(--paper-3) 50%, var(--paper-2) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--r-md);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---- Scroll reveal — cinematic v8 timing (slow, generous travel) ---- */
.reveal { opacity: 0; transform: translateY(32px); transition:
  opacity .85s var(--easing), transform .85s var(--easing); }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.95); transition:
  opacity .8s var(--easing), transform .8s var(--easing); }
.reveal-scale.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(26px);
  transition: opacity .75s var(--easing), transform .75s var(--easing); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1){transition-delay:.04s}
[data-stagger].in > *:nth-child(2){transition-delay:.10s}
[data-stagger].in > *:nth-child(3){transition-delay:.16s}
[data-stagger].in > *:nth-child(4){transition-delay:.22s}
[data-stagger].in > *:nth-child(5){transition-delay:.28s}
[data-stagger].in > *:nth-child(6){transition-delay:.34s}
[data-stagger].in > *:nth-child(7){transition-delay:.40s}
[data-stagger].in > *:nth-child(8){transition-delay:.46s}

/* ---- Focus ring (accessible + on-brand) ---- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---- Soft entrance for whole sections ---- */
@keyframes rise-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---- Pill badge with dot ---- */
.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--mint-3);
  background: var(--mint-50); border: 1px solid var(--mint-100);
  padding: 5px 12px; border-radius: 999px;
}
.badge-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px;
  background: var(--mint-2); animation: ff-pulse 1.6s ease-in-out infinite;
}

/* ---- Number ticker emphasis ---- */
.stat-number {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}

/* ---- Smooth image hover zoom wrapper ---- */
.zoom-img { overflow: hidden; }
.zoom-img img { transition: transform .6s var(--easing); }
.zoom-img:hover img { transform: scale(1.05); }

/* ---- Underline-grow link ---- */
.link-grow { position: relative; }
.link-grow::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--champagne); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--easing); border-radius: 2px;
}
.link-grow:hover::after { transform: scaleX(1); }

/* ---- Section divider glow ---- */
.divider-glow {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .aurora::before, .aurora::after, .gradient-border::before,
  .gradient-text, .badge-live::before { animation: none !important; }
  .reveal, .reveal-scale, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   v5 Atelier — homepage editorial additions
   ============================================================ */

/* Centered eyebrow (text-center blocks) */
.text-center .eyebrow { justify-content: center; }

/* Editorial stat band — replaces the plain proof card */
.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  overflow: hidden;
}
.proof-cell {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
}
.proof-cell:last-child { border-right: 0; }
.proof-num {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.proof-label {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-5);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .proof-band { grid-template-columns: 1fr; }
  .proof-cell { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 24px; }
  .proof-cell:last-child { border-bottom: 0; }
}

/* Step cards — editorial numbered, serif numeral */
.step-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .2s var(--easing), box-shadow .2s var(--easing), transform .2s var(--easing);
}
.step-card:hover {
  border-color: var(--ink-7);
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.step-num {
  width: auto; height: auto;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.9;
  color: var(--champagne);
  letter-spacing: -0.03em;
  background: none;
  border: 0;
  display: block;
}
