
:root {
  /* Light mode (default) */
  --ink: #0A0A0B;
  --ink-90: rgba(10, 10, 11, 0.9);
  --ink-70: rgba(10, 10, 11, 0.7);
  --ink-60: rgba(10, 10, 11, 0.6);
  --ink-50: rgba(10, 10, 11, 0.55);   /* New: for small UI text on bone backgrounds (AA on bone) */
  --ink-40: rgba(10, 10, 11, 0.4);
  --ink-15: rgba(10, 10, 11, 0.15);
  --ink-08: rgba(10, 10, 11, 0.08);
  --ink-04: rgba(10, 10, 11, 0.04);
  --paper: #FFFFFF;
  --bone: #F6F5F1;
  --bone-deep: #EFEDE5;
  --line: rgba(10, 10, 11, 0.08);
  --line-bold: rgba(10, 10, 11, 0.14);
  --coral: #FF5B3A;
  --coral-soft: rgba(255, 91, 58, 0.08);
  --coral-deep: #E84827;
  --coral-text: #C73D1F;          /* Darkened from #E84827 to pass 4.5:1 on white */
  --coral-text-bone: #C73D1F;     /* Same on bone background */
  --ochre: #C49555;
  --amber: #D9A04A;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.1);
  --grid-line: rgba(10, 10, 11, 0.04);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #F4F2EC;
    --ink-90: rgba(244, 242, 236, 0.92);
    --ink-70: rgba(244, 242, 236, 0.78);   /* Bumped from 0.72 */
    --ink-60: rgba(244, 242, 236, 0.66);   /* Bumped from 0.6 */
    --ink-50: rgba(244, 242, 236, 0.6);
    --ink-40: rgba(244, 242, 236, 0.5);    /* Bumped from 0.42 */
    --ink-15: rgba(244, 242, 236, 0.16);
    --ink-08: rgba(244, 242, 236, 0.1);
    --ink-04: rgba(244, 242, 236, 0.06);
    --paper: #0D0D0F;
    --bone: #16161A;
    --bone-deep: #1C1C21;
    --line: rgba(244, 242, 236, 0.1);
    --line-bold: rgba(244, 242, 236, 0.18);
    /* Coral lifts on dark backgrounds so it doesn't muddy */
    --coral: #FF6A4D;
    --coral-soft: rgba(255, 106, 77, 0.14);
    --coral-deep: #FF7355;
    --coral-text: #FFA28A;          /* Lifted further for AA on near-black backgrounds */
    --coral-text-bone: #FFB199;     /* Even more lift for bone (#16161A) background */
    --ochre: #D6A968;
    --amber: #E5B061;
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
    --grid-line: rgba(244, 242, 236, 0.04);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Selection */
::selection { background: var(--coral); color: #fff; }

/* Reading progress bar (blog posts only) */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}
.reading-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--coral-deep));
  transition: width 0.1s linear;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo .mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-logo .dot { color: var(--coral); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-60);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: all 0.2s;
}
.nav-links a.nav-cta:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.page-hero {
  position: relative;
  padding: 96px 32px 64px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask: radial-gradient(ellipse at top, black 20%, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at top, black 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}
.page-hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 60%);
  top: -300px;
  right: -200px;
  pointer-events: none;
  opacity: 0.7;
}
.page-hero-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-text);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 5px 12px;
  background: var(--coral-soft);
  border-radius: 100px;
}
.page-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 22px;
  color: var(--ink);
}
.page-title .italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}
.page-deck {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink-60);
  line-height: 1.55;
  max-width: 680px;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   BLOG INDEX. Modern card grid with hover
   ============================================================ */
.blog-controls {
  position: sticky;
  top: 56px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 50;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-60);
  background: transparent;
  border: 1px solid var(--line-bold);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-chip:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.filter-chip.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.filter-chip .count {
  opacity: 0.5;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
}
.filter-chip.active .count { opacity: 0.7; }

/* Featured post (first card, full-width) */
.blog-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 56px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
  align-items: center;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ink);
}
.blog-featured-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-text);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-featured-label .pulse {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
.blog-featured-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.blog-featured-excerpt {
  font-size: 16px;
  color: var(--ink-60);
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-featured-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-60);  /* Was ink-40 */
}
.blog-featured-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--coral-text);
  font-size: 14px;
}
.blog-featured-visual {
  aspect-ratio: 4/5;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.blog-featured-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--coral-soft) 0%, transparent 50%);
}
.blog-featured-visual-wm {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--ink);
  text-align: center;
}
.blog-featured-visual-wm .dot { color: var(--coral); }

@media (max-width: 720px) {
  .blog-featured {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .blog-featured-visual { aspect-ratio: 16/10; max-height: 200px; }
}

/* Card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--ink-15);
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.blog-card-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-text);
  font-weight: 700;
}
.blog-card-read {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-60);  /* Was ink-40 */
  letter-spacing: 0.06em;
}
.blog-card-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.blog-card-arrow {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: gap 0.25s;
}
.blog-card:hover .blog-card-arrow {
  color: var(--coral-text);
  gap: 10px;
}

/* Hidden card (when filtered) */
.blog-card.is-hidden,
.blog-featured.is-hidden { display: none; }

/* ============================================================
   ARTICLE BODY (blog posts, supporting pages, landing pages)
   ============================================================ */
.article-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 32px 96px;
}
@media (min-width: 980px) {
  .article-shell.with-toc {
    grid-template-columns: 220px minmax(0, 720px) 1fr;
    gap: 48px;
  }
  .article-shell.with-toc .article-body { grid-column: 2; }
  .article-shell.with-toc .article-toc { grid-column: 1; }
}

.article-toc {
  display: none;
}
@media (min-width: 980px) {
  .article-toc {
    display: block;
    position: sticky;
    top: 88px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    font-size: 13px;
  }
  .article-toc-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-60);  /* Was ink-40; needs higher contrast */
    font-weight: 700;
    margin-bottom: 14px;
  }
  .article-toc a {
    display: block;
    padding: 7px 0 7px 12px;
    color: var(--ink-60);
    text-decoration: none;
    border-left: 2px solid var(--line);
    transition: all 0.2s;
    line-height: 1.4;
  }
  .article-toc a:hover {
    color: var(--ink);
    border-left-color: var(--ink-40);
  }
  .article-toc a.active {
    color: var(--coral-text);
    border-left-color: var(--coral);
    font-weight: 600;
  }
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 56px 0 18px;
  line-height: 1.2;
  scroll-margin-top: 100px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 14px;
  line-height: 1.3;
  scroll-margin-top: 100px;
}
.article-body p {
  margin-bottom: 22px;
  color: var(--ink-70);
  font-size: 17px;
  line-height: 1.7;
}
.article-body p strong { color: var(--ink); font-weight: 700; }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--coral-text);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.article-body a:hover { color: var(--coral); }
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
  color: var(--ink-70);
}
.article-body li {
  margin-bottom: 10px;
  line-height: 1.65;
}
.article-body li strong { color: var(--ink); }
.article-body blockquote {
  border-left: 3px solid var(--coral);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.4;
}

.callout {
  background: var(--bone);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 36px 0;
  border: 1px solid var(--line);
}
.callout-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--coral-text);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.callout p { margin-bottom: 0; }
.callout p + p { margin-top: 12px; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 56px 0;
  border: none;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
}
.comparison th, .comparison td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.comparison th {
  background: var(--bone);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.comparison td.check { color: var(--coral-text); font-weight: 700; }
.comparison td.x { color: var(--ink-60); }  /* Was ink-40 */
.comparison tr:hover td { background: var(--bone); }
@media (max-width: 720px) {
  .comparison {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: 13px;
  }
  .comparison th, .comparison td { padding: 10px 12px; }
}

/* ============================================================
   END-OF-ARTICLE CTA
   Uses fixed near-black background in BOTH light and dark mode
   so the white text on coral aesthetic always works. The CTA is
   deliberately the visual anchor of the page.
   ============================================================ */
.article-cta {
  background: #0A0A0B;
  color: #FFFFFF;
  padding: 64px 40px;
  border-radius: 28px;
  margin: 64px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 91, 58, 0.2) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.5;
}
.article-cta h3 {
  position: relative;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.15;
  color: #FFFFFF;
}
.article-cta h3 .italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #FF8870;  /* Lifted coral so it reads on near-black */
  font-weight: 500;
}
.article-cta p {
  position: relative;
  color: rgba(255, 255, 255, 0.85);  /* High enough contrast on near-black */
  margin-bottom: 28px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C73D1F;  /* Deep coral; 5.10:1 with white, passes AA */
  color: #FFFFFF !important;  /* Force white over .article-body a rule */
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 8px 24px rgba(199, 61, 31, 0.4);
}
.article-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 91, 58, 0.5);
  color: #FFFFFF !important;
  background: #E84827;  /* Brighter on hover - signals interactivity */
}
.article-cta-meta {
  position: relative;
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);  /* Bumped from 0.4 to 0.6 for AA */
}

/* ============================================================
   PREV / NEXT NAVIGATION (blog posts)
   ============================================================ */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.post-nav a {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
  display: block;
}
.post-nav a:hover {
  background: var(--paper);
  border-color: var(--ink-15);
  transform: translateY(-2px);
}
.post-nav-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);  /* Was ink-40 */
  font-weight: 700;
  margin-bottom: 8px;
}
.post-nav-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.post-nav .next { text-align: right; }
@media (max-width: 720px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav .next { text-align: left; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bone-deep);
  color: var(--ink-70);
  padding: 64px 32px 32px;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
  display: inline-block;
  text-decoration: none;
}
.footer-logo .dot { color: var(--coral); }
.footer-tagline {
  font-size: 14px;
  color: var(--ink-70);  /* Was ink-60 */
  max-width: 280px;
  line-height: 1.55;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-60);  /* Was ink-40 */
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--ink-70);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral-text); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-60);  /* Was ink-40 */
  letter-spacing: 0.04em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .nav { padding: 12px 20px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .container, .container-wide { padding: 0 20px; }
  .page-hero { padding: 56px 20px 40px; }
  .article-body { font-size: 16px; }
  .article-body h2 { margin-top: 40px; }
  .article-cta { padding: 44px 24px; }
  .footer { padding: 48px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .blog-controls { padding: 14px 0; }
  .blog-filters { padding: 0 20px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .blog-filters .filter-chip { flex-shrink: 0; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #0A0A0B;
  color: #F4F2EC;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-banner.show { display: block; animation: cookieSlideUp 0.4s cubic-bezier(.16,1,.3,1); }
@keyframes cookieSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
  margin: 0;
}
.cookie-banner-text a {
  color: #FFA28A;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: 0;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}
.cookie-btn-primary {
  background: #C73D1F;
  color: #FFFFFF;
}
.cookie-btn-primary:hover { background: #FF5B3A; }
@media (max-width: 560px) {
  .cookie-banner { padding: 16px 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ============================================================
   JOVIE EASTER EGG (June 2 only. Activated via .jovie-day on <body>)
   ============================================================ */
body.jovie-day .mark-coral-dot {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  animation: jovieHeartbeat 1.4s ease-in-out infinite;
}
@keyframes jovieHeartbeat {
  0%, 100% { transform: scale(1); }
  14%      { transform: scale(1.28); }
  28%      { transform: scale(1); }
  42%      { transform: scale(1.22); }
  70%      { transform: scale(1); }
}

/* The message that appears when the dot is clicked (once per session) */
.jovie-message {
  position: fixed;
  pointer-events: none;
  background: #FFFFFF;
  color: #0A0A0B;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow:
    0 24px 60px rgba(199, 61, 31, 0.18),
    0 8px 24px rgba(10, 10, 11, 0.12);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 340px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  z-index: 9999;
  opacity: 0;
  transform: translateX(-20px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1);
  border: 1px solid rgba(199, 61, 31, 0.2);
}
.jovie-message.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.jovie-message::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 28px;
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  transform: rotate(45deg);
  border-left: 1px solid rgba(199, 61, 31, 0.2);
  border-bottom: 1px solid rgba(199, 61, 31, 0.2);
}
.jovie-message-signature {
  display: block;
  margin-top: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #C73D1F;
  text-align: right;
}
@media (prefers-color-scheme: dark) {
  .jovie-message {
    background: #1A1A1F;
    color: #F4F2EC;
    border-color: rgba(255, 162, 138, 0.3);
  }
  .jovie-message::before {
    background: #1A1A1F;
    border-left-color: rgba(255, 162, 138, 0.3);
    border-bottom-color: rgba(255, 162, 138, 0.3);
  }
  .jovie-message-signature { color: #FFA28A; }
}

/* Footer note shown only on Jovie's day */
body.jovie-day .jovie-footer-note {
  display: inline;
  margin-left: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--coral-text);
  font-size: 13px;
}
.jovie-footer-note { display: none; }

@media (prefers-reduced-motion: reduce) {
  body.jovie-day .mark-coral-dot { animation: none; }
}

/* ============================================================
   HOLIDAYS (GOOGLE DOODLE STYLE)
   Subtle, one-day-only treatments of the V mark. Same pattern as
   the Jovie egg: body class gates everything, sessionStorage caps
   any animation to once-per-session.
   ============================================================ */

/* Shared: a holiday "ornament" container layered exactly over the V mark.
   Sized and positioned by JS to match the rendered V. */
.holiday-ornament {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}

/* ---------- New Year's: gentle confetti drift, scoped to V+wordmark area ---------- */
.ny-confetti {
  position: absolute;
  top: -16px;
  pointer-events: none;
  z-index: 50;
  width: 5px;
  height: 5px;
  opacity: 0;
  animation: nyConfettiFall 2.6s ease-in forwards;
}
@keyframes nyConfettiFall {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(80px) rotate(540deg); }
}

/* ---------- MLK Day: quiet quote in footer ---------- */
body.holiday-mlk .footer-mlk-quote {
  display: block;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: currentColor;
  opacity: 0.7;
  text-align: center;
  line-height: 1.5;
}
.footer-mlk-quote { display: none; }

/* ---------- Valentine's Day: heart replaces coral dot ---------- */
body.holiday-valentines .mark-coral-dot {
  display: none;
}
body.holiday-valentines .holiday-heart {
  display: block;
}
.holiday-heart {
  display: none;
}

/* ---------- St Patrick's: clover replaces coral dot ---------- */
body.holiday-stpatricks .mark-coral-dot {
  display: none;
}
body.holiday-stpatricks .holiday-clover {
  display: block;
}
.holiday-clover {
  display: none;
}

/* ---------- Earth Day: globe replaces coral dot ---------- */
body.holiday-earthday .mark-coral-dot {
  display: none;
}
body.holiday-earthday .holiday-globe {
  display: block;
}
.holiday-globe {
  display: none;
}

/* ---------- Memorial / Veterans / Patriot / Independence Day: flag ribbon ---------- */
/* Small corner ribbon on the V mark wrapper. Solemn for Memorial/Veterans/9/11,
   restrained festive for July 4 (which also gets fireworks once). */
body.holiday-flag .mark-flag-ribbon,
body.holiday-fireworks .mark-flag-ribbon {
  display: block;
}
.mark-flag-ribbon { display: none; }

/* Fireworks (Independence Day) burst once on load */
.fireworks-burst {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
}
.fireworks-burst.go {
  animation: fireworksFade 2.6s ease-out forwards;
}
@keyframes fireworksFade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 0.9; }
  100% { opacity: 0; }
}
.fw-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.fireworks-burst.go .fw-particle {
  animation: fwShoot 1.4s cubic-bezier(0.15, 0.7, 0.3, 1) forwards;
}
@keyframes fwShoot {
  0%   { opacity: 0; transform: translate(-50%, -50%) translate(0, 0); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) translate(var(--fw-dx), var(--fw-dy)); }
}

/* ---------- Juneteenth: red/black/green stripe under dot ---------- */
body.holiday-juneteenth .juneteenth-stripe {
  display: block;
}
.juneteenth-stripe { display: none; }

/* ---------- Halloween: pumpkin face replaces dot ---------- */
body.holiday-halloween .mark-coral-dot {
  display: none;
}
body.holiday-halloween .holiday-pumpkin {
  display: block;
}
.holiday-pumpkin {
  display: none;
}

/* ---------- Thanksgiving: autumn maple leaf replaces coral dot ---------- */
body.holiday-thanksgiving .mark-coral-dot {
  display: none;
}
body.holiday-thanksgiving .holiday-mapleleaf {
  display: block;
}
.holiday-mapleleaf {
  display: none;
}

/* ---------- Christmas: Santa hat sits on the V ---------- */
body.holiday-christmas .holiday-santa-hat {
  display: block;
}
.holiday-santa-hat { display: none; }

@media (prefers-reduced-motion: reduce) {
  .ny-confetti, .fireworks-burst, .fireworks-burst.go .fw-particle {
    animation: none !important;
    display: none !important;
  }
}

/* ============================================================
   SALE BANNER SYSTEM
   Date-gated banner that appears during scheduled annual sales.
   Activated via body.sale-active class. Dismissible per session.
   ============================================================ */
.sale-banner {
  display: none;
  position: relative;
  z-index: 100;
  background: #0A0A0B;
  color: #F4F2EC;
  padding: 12px 48px 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 91, 58, 0.4);
}
@media (prefers-color-scheme: dark) {
  .sale-banner { background: #16161A; color: #F4F2EC; border-bottom-color: rgba(255, 91, 58, 0.3); }
}
body.sale-active .sale-banner {
  display: block;
}
body.sale-dismissed .sale-banner {
  display: none;
}
.sale-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sale-banner-tag {
  background: #FF5B3A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.sale-banner-message {
  font-weight: 500;
}
.sale-banner-message strong {
  font-weight: 700;
  color: #FF5B3A;
}
.sale-banner-cta {
  background: #FF5B3A;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.sale-banner-cta:hover {
  opacity: 0.9;
}
.sale-banner-countdown {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  opacity: 0.85;
  white-space: nowrap;
}
.sale-banner-dismiss {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  opacity: 0.55;
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  font-family: inherit;
}
.sale-banner-dismiss:hover { opacity: 1; }

/* Strikethrough on original price (applied via class during sale) */
.price-original-strike {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 8px;
  font-weight: 400;
}
body.sale-active .price-sale-callout {
  display: inline-block;
}
.price-sale-callout {
  display: none;
  color: #FF5B3A;
  font-weight: 700;
  margin-left: 8px;
}

@media (max-width: 640px) {
  .sale-banner { padding: 10px 40px 10px 16px; font-size: 13px; }
  .sale-banner-inner { gap: 10px; }
  .sale-banner-countdown { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ARTICLE -> VELLEM CONVERSION BRIDGE, on-brand redesign
   Editorial pull-quote feel. Cormorant italic accent line on top,
   subtle V mark anchor, refined typography rhythm.
   ============================================================ */
.article-vellem-bridge {
  margin: 64px 0 0;
  padding: 44px 48px 40px;
  background: var(--card);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #FF5B3A;
}
.article-vellem-bridge::before {
  content: "";
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF5B3A 0%, transparent 60%);
  z-index: 1;
}
.article-vellem-bridge::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 32px;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 280'><path d='M 60 60 L 145 200 L 230 60' stroke='%23FF5B3A' stroke-width='22' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.18'/><circle cx='145' cy='200' r='12' fill='%23FF5B3A' opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.article-vellem-bridge p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 400;
}
.article-vellem-bridge p:last-child { margin: 0; }
.article-vellem-bridge p strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
}
.article-vellem-bridge-cta {
  margin-top: 24px !important;
  font-size: 15px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-vellem-bridge-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF5B3A;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border: 1.5px solid #FF5B3A;
  border-radius: 100px;
  transition: all 0.2s cubic-bezier(0.22,1,0.36,1);
}
.article-vellem-bridge-cta a:hover {
  background: #FF5B3A;
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,91,58,0.28);
}

@media (max-width: 640px) {
  .article-vellem-bridge { padding: 32px 28px 28px; margin: 44px 0 0; }
  .article-vellem-bridge::after { width: 28px; height: 28px; top: 18px; right: 20px; }
  .article-vellem-bridge p { font-size: 15.5px; }
  .article-vellem-bridge p strong { font-size: 20px; }
}

/* ============================================================
   PAGE HEADER (blog posts and content pages)
   Simpler than .page-hero (no grid/glow effects). Used for
   article tops where the focus is the title, not a marketing hook.
   The blog post template was built before .page-hero existed, so
   it uses these classes. Keeping both lets every page render.
   ============================================================ */
.page-header {
  position: relative;
  padding: 80px 32px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask: radial-gradient(ellipse at top, black 20%, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at top, black 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}
.page-header > .container {
  position: relative;
  z-index: 1;
}
.page-meta {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.coral-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-text);
  font-weight: 700;
  padding: 5px 12px;
  background: var(--coral-soft);
  border-radius: 100px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .page-header { padding: 56px 20px 36px; }
}

/* ============================================================
   ACCESSIBILITY: skip-to-content + focus-visible
   ============================================================ */
.skip-link {
  position: absolute;
  top: 0; left: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.2s cubic-bezier(.16,1,.3,1);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* Universal focus-visible. Coral outline, clear offset, never on touch */
*:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline-offset: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: 0;
  outline-width: 2px;
}

/* ============================================================
   VIEW TRANSITIONS (modern Chromium browsers - graceful fallback)
   ============================================================ */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.28s;
  animation-timing-function: cubic-bezier(.16,1,.3,1);
}
::view-transition-old(root) {
  animation-name: vellem-fade-out;
}
::view-transition-new(root) {
  animation-name: vellem-fade-in;
}
@keyframes vellem-fade-out {
  to { opacity: 0; }
}
@keyframes vellem-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

/* ============================================================
   THEME TOGGLE (manual override of prefers-color-scheme)
   data-theme on <html>: "light" forces light, "dark" forces dark, absent = auto
   ============================================================ */




.related-posts-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-text);
  font-weight: 700;
  margin-bottom: 8px;
}
.related-posts-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--ink);
}
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.related-post {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s cubic-bezier(.16,1,.3,1);
  display: block;
  position: relative;
  overflow: hidden;
}
.related-post:hover {
  background: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.related-post-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-text);
  font-weight: 700;
  margin-bottom: 10px;
}
.related-post-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 720px) {
  .related-posts { margin: 56px 0 0; padding-top: 32px; }
  .related-posts-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG SEARCH INPUT (on /blog index)
   ============================================================ */
.blog-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  margin-left: auto;
}
.blog-search-input {
  width: 100%;
  padding: 8px 14px 8px 36px;
  border: 1px solid var(--line-bold);
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s;
}
.blog-search-input:focus {
  border-color: var(--ink);
  outline: none;
}
.blog-search-input::placeholder { color: var(--ink-60); }
.blog-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--ink-60);
  pointer-events: none;
}
.blog-no-results {
  text-align: center;
  padding: 80px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-60);
  grid-column: 1 / -1;
  display: none;
}
.blog-no-results.show { display: block; }
@media (max-width: 720px) {
  .blog-search-wrap { margin-left: 0; max-width: none; width: 100%; }
}

/* ============================================================
   BRAND STRIP MARKS (homepage marquee with inline logos)
   ============================================================ */
.brand-strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 28px 40px;
  padding: 8px 0;
}
.brand-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-70);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
.brand-strip-item:hover {
  color: var(--ink);
  transform: translateY(-1px);
}
.brand-strip-mark {
  flex-shrink: 0;
  color: var(--ink-70);
  transition: color 0.3s ease;
}
.brand-strip-item:hover .brand-strip-mark {
  color: var(--ink);
}
.brand-strip-text {
  display: inline-flex;
  align-items: baseline;
}
.brand-strip-text.bold { font-weight: 700; }
.brand-strip-text.serif {
  font-family: 'Cormorant Garamond', Fraunces, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
}
@media (max-width: 720px) {
  .brand-strip-row { gap: 18px 28px; }
  .brand-strip-item { font-size: 15px; }
  .brand-strip-text.serif { font-size: 17px; }
}

/* ============================================================
   GLOBAL FOOTER - applied across every page
   ============================================================ */
.footer {
  background: var(--bone);
  color: var(--ink);
  padding: 80px 32px 40px;
  margin-top: 120px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 64px;
  align-items: start;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.footer-logo .dot { color: var(--coral); }
.footer-mark { color: var(--ink); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-70);
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  color: var(--ink-90);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.4;
  padding: 6px 0;
  transition: color 0.18s ease, padding-left 0.18s ease;
  border-radius: 4px;
}
.footer-col a:hover {
  color: var(--coral);
  padding-left: 4px;
}
.footer-bottom {
  max-width: 1180px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-60);
}
.footer-copy { font-family: 'JetBrains Mono', monospace; }
.footer-credit { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--ink-70); }
.jovie-footer-note {
  display: inline;
  color: var(--coral-text);
  opacity: 0.75;
  font-size: 12.5px;
}
@media (max-width: 800px) {
  .footer { padding: 56px 24px 32px; margin-top: 72px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ============================================================
   CONTRAST FORTIFICATION
   Ensure all text uses theme variables (no hardcoded dark colors that
   would become invisible on the dark background)
   ============================================================ */
.kit-card-name,
.kit-card-time,
.kit-wordmark,
.kit-card-meta,
.brand-strip-label,
.recent-kits-title,
.recent-kits-sub,
.section-shift-label,
.section-shift-eyebrow {
  color: var(--ink);
}
.kit-card-time,
.recent-kits-sub,
.brand-strip-label {
  color: var(--ink-60);
}
/* Force-paper background for hero glow stays clean in dark mode */
.hero-glow {
  background: radial-gradient(circle at center, var(--coral-soft) 0%, transparent 60%);
  opacity: 0.6;
}

/* ============================================================
   VISUAL VELLEM MARK (replaces "H." card)
   ============================================================ */
.visual-vellem-mark {
  color: var(--ink);
  display: block;
}
.visual-card-tl {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   INNOVATION LAYER - animations, micro-interactions, depth
   ============================================================ */

/* --- V MARK DRAW-ON-LOAD ANIMATION --- */
@keyframes vellem-v-draw {
  0% {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    fill-opacity: 0;
  }
  60% {
    stroke-dasharray: 400;
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
  100% {
    stroke-dasharray: 400;
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
@keyframes vellem-dot-pop {
  0%, 60% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.4);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.visual-vellem-mark path:last-of-type {
  stroke: currentColor;
  stroke-width: 1;
  fill: currentColor;
  animation: vellem-v-draw 1.4s cubic-bezier(.16,1,.3,1) 0.2s both;
}
.visual-vellem-mark .mark-coral-dot {
  transform-origin: 145px 195px;
  animation: vellem-dot-pop 0.8s cubic-bezier(.34, 1.56, .64, 1) 1.4s both;
}
@media (prefers-reduced-motion: reduce) {
  .visual-vellem-mark path:last-of-type,
  .visual-vellem-mark .mark-coral-dot {
    animation: none;
  }
}

/* --- MAGNETIC CTA BUTTONS --- */
.cta-primary,
.cta-secondary {
  position: relative;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.cta-primary::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--coral-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.cta-primary:hover::before { opacity: 1; }
.cta-primary:hover {
  transform: translate3d(var(--mx-shift, 0), var(--my-shift, 0), 0) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 91, 58, 0.42);
}

/* --- KIT CARD ELEGANT HOVER --- */
.kit-card {
  position: relative;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.kit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px var(--coral) inset;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.kit-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 24px 48px rgba(10, 10, 11, 0.12),
    0 12px 24px rgba(255, 91, 58, 0.06);
}
.kit-card:hover::after { opacity: 0.4; }
.kit-card .kit-mark {
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.kit-card:hover .kit-mark {
  transform: scale(1.08) rotate(-2deg);
}
.kit-card .kit-palette span {
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.kit-card:hover .kit-palette span:nth-child(1) { transform: translateY(-3px); }
.kit-card:hover .kit-palette span:nth-child(2) { transform: translateY(-2px); }
.kit-card:hover .kit-palette span:nth-child(3) { transform: translateY(-3px); }
.kit-card:hover .kit-palette span:nth-child(4) { transform: translateY(-2px); }

/* --- BRAND STRIP CONTINUOUS MARQUEE --- */
@keyframes brand-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-strip {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.brand-strip-row {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 64px;
  animation: brand-marquee 38s linear infinite;
}
.brand-strip:hover .brand-strip-row {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .brand-strip-row {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
  }
}

/* --- SECTION REVEAL ON SCROLL --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll[data-reveal-delay="100"] { transition-delay: 0.1s; }
.reveal-on-scroll[data-reveal-delay="200"] { transition-delay: 0.2s; }
.reveal-on-scroll[data-reveal-delay="300"] { transition-delay: 0.3s; }
.reveal-on-scroll[data-reveal-delay="400"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- HERO PARALLAX ON SCROLL --- */
.hero-visual {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* --- CHOICE TILES: STRONGER HOVER FEEDBACK --- */
.choice-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), border-color 0.25s ease, box-shadow 0.35s ease;
}
.choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--coral-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.choice-card:hover::after { opacity: 1; }
.choice-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(10, 10, 11, 0.08);
}
.choice-card.is-selected {
  border-color: var(--coral);
  background: var(--coral-soft);
}
.choice-card.is-selected::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M 2.5 6 L 5 8.5 L 9.5 4" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- HEADLINE CHOREOGRAPHY --- */
@keyframes headline-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-headline {
  animation: headline-rise 1s cubic-bezier(.16,1,.3,1) 0.4s both;
}
.hero-headline > span {
  display: inline-block;
  animation: headline-rise 0.9s cubic-bezier(.16,1,.3,1) both;
}
.hero-headline > span:nth-child(1) { animation-delay: 0.5s; }
.hero-headline > span:nth-child(2) { animation-delay: 0.7s; }
.hero-headline > span:nth-child(3) { animation-delay: 0.9s; }
@media (prefers-reduced-motion: reduce) {
  .hero-headline, .hero-headline > span { animation: none; opacity: 1; transform: none; filter: none; }
}

/* --- HOVER ON BRAND STRIP MARKS - coral lift --- */
.brand-strip-item:hover .brand-strip-mark {
  color: var(--coral);
}
.brand-strip-item:hover .brand-strip-text [style*="coral"] {
  /* Accent already coral, just intensify */
}

/* --- SCROLL PROGRESS BAR (sleek, top of page) --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  z-index: 9998;
  pointer-events: none;
}
.scroll-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--coral-deep));
  width: 0%;
  transition: width 0.05s linear;
}

/* --- ANIMATED SECTION SHIFTS --- */
.section-shift {
  position: relative;
}
.section-shift-eyebrow,
.section-shift-label {
  display: inline-block;
  position: relative;
}
.section-shift-eyebrow::before,
.section-shift-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--coral);
  vertical-align: middle;
  margin-right: 10px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(.16,1,.3,1) 0.2s;
}
.reveal-on-scroll.is-visible .section-shift-eyebrow::before,
.reveal-on-scroll.is-visible .section-shift-label::before {
  transform: scaleX(1);
}

/* ============================================================
   PROGRESS BAR + TICKER VISIBILITY
   Hidden on hero stage (initial state), visible when builder active.
   ============================================================ */
body[data-stage="hero"] .progress-bar,
body[data-stage="hero"] .progress-orb,
body[data-stage="hero"] .live-ticker,
body:not([data-stage]) .progress-bar,
body:not([data-stage]) .progress-orb,
body:not([data-stage]) .live-ticker {
  display: none !important;
}
body[data-stage="builder"] .progress-bar,
body[data-stage="builder"] .progress-orb,
body[data-stage="builder"] .live-ticker {
  display: flex !important;
}

/* ============================================================
   GAMIFICATION LAYER - Make crafter tiles feel rich and interactive
   ============================================================ */

/* Make choice-icon dramatically more prominent */
.choice-card .choice-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--bone) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), background 0.3s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.choice-card .choice-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%);
  pointer-events: none;
}
.choice-card .choice-icon svg {
  width: 38px !important;
  height: 38px !important;
  color: var(--coral-deep);
  stroke: var(--coral-deep);
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 1;
}
.choice-card:hover .choice-icon {
  transform: translateY(-2px) rotate(-3deg);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  box-shadow: 0 10px 24px rgba(255, 91, 58, 0.3);
}
.choice-card:hover .choice-icon svg {
  color: white;
  stroke: white;
  transform: scale(1.1);
}
.choice-card.selected .choice-icon,
.choice-card.is-selected .choice-icon {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  box-shadow: 0 8px 20px rgba(255, 91, 58, 0.35);
}
.choice-card.selected .choice-icon svg,
.choice-card.is-selected .choice-icon svg {
  color: white;
  stroke: white;
}

/* Choice label/sub typography - more readable hierarchy */
.choice-card .choice-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 4px;
}
.choice-card .choice-sub {
  font-size: 12px;
  color: var(--ink-60);
  text-align: center;
  line-height: 1.35;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Palette tiles - upgrade visual prominence of color stripes */
.palette-stripe {
  height: 56px !important;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(10, 10, 11, 0.08);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
  position: relative;
}
.palette-stripe > div {
  flex: 1;
  height: 100%;
  transition: flex 0.4s cubic-bezier(.16,1,.3,1);
}
.choice-card:hover .palette-stripe {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(10, 10, 11, 0.15);
}
.choice-card:hover .palette-stripe > div:first-child { flex: 1.4; }

/* Aesthetic tile preview text - make more interactive */
.style-preview {
  font-size: 32px !important;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--ink);
  transition: color 0.3s ease, transform 0.4s ease;
}
.choice-card:hover .style-preview {
  color: var(--coral-deep);
  transform: scale(1.05);
}

/* Mark preview - already has SVG, make it pop */
.mark-preview {
  width: 80px !important;
  height: 80px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--bone) 100%);
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), background 0.3s ease;
  color: var(--coral-deep);
}
.choice-card:hover .mark-preview {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: white;
  transform: translateY(-2px);
}
.choice-card.selected .mark-preview,
.choice-card.is-selected .mark-preview {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: white;
}
.mark-preview svg {
  width: 52px;
  height: 52px;
}
.mark-preview .mp-initial {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  display: inline-block;
  position: relative;
}
.mark-preview .mp-initial .letter {
  display: inline-block;
}
.mark-preview .mp-initial .initial-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-left: 2px;
  vertical-align: super;
  font-size: 0;
}

/* Choice card grid spacing - make it breathe */
.choice-grid {
  gap: 18px;
}
@media (max-width: 720px) {
  .choice-grid { gap: 12px; }
  .choice-card .choice-icon { width: 56px !important; height: 56px !important; }
  .choice-card .choice-icon svg { width: 32px !important; height: 32px !important; }
}

/* ============================================================
   FORCE-HIDE PROGRESS ORB ON HERO (hyper-specific override)
   ============================================================ */
html body[data-stage="hero"] #progressOrb,
html body[data-stage="hero"] .progress-orb,
html body[data-stage="hero"] .progress-bar,
html body[data-stage="hero"] .live-ticker,
html body:not([data-stage]) #progressOrb,
html body:not([data-stage]) .progress-orb,
html body:not([data-stage]) .progress-bar,
html body:not([data-stage]) .live-ticker {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
html body[data-stage="builder"] #progressOrb,
html body[data-stage="builder"] .progress-orb,
html body[data-stage="builder"] .progress-bar {
  display: flex !important;
  visibility: visible !important;
  height: auto !important;
  opacity: 1 !important;
}
html body[data-stage="builder"] .live-ticker {
  display: flex !important;
  visibility: visible !important;
}

/* ============================================================
   HERO LAYOUT FORTIFICATION
   Ensures text never gets smooshed against the right side.
   Hero is a 2-column grid on desktop, single column on mobile.
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 32px 48px;
}
.hero-inner > div:first-child {
  /* Text column: stays well-aligned to the left */
  min-width: 0;
  max-width: 640px;
}
.hero-headline {
  font-family: 'Fraunces', 'Cormorant Garamond', serif !important;
  font-size: clamp(48px, 7.2vw, 92px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  margin: 16px 0 22px;
  color: var(--ink);
}
.hero-headline .accent {
  font-style: italic;
  color: var(--coral);
}
.hero-headline .dot { color: var(--coral); }
.hero-sub {
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
  color: var(--ink-70);
  margin: 0 0 28px;
  max-width: 480px;
}
.hero-tension {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-60);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-risk-reversal {
  font-size: 13.5px;
  color: var(--ink-60);
  margin: 8px 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-risk-reversal .risk-ico {
  color: var(--coral);
  font-size: 8px;
  display: inline-block;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13.5px;
  color: var(--ink-70);
  margin-top: 8px;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero-meta-item .check {
  color: var(--coral);
  font-weight: 700;
}

/* Right column: the live preview card */
.hero-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-live-preview {
  width: 100%;
  max-width: 460px;
}

/* MOBILE: collapse to single column */
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 36px 20px 32px;
  }
  .hero-inner > div:first-child { max-width: 100%; }
  .hero-headline { font-size: clamp(40px, 11vw, 72px) !important; }
}

/* ============================================================
   GRID BACKGROUND - animated subtle wave ripple
   ============================================================ */
.grid-bg, .hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 10, 11, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 11, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: 0 0;
  opacity: 0.9;
  z-index: 1;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  animation: grid-wave 18s ease-in-out infinite;
  will-change: transform, background-position;
}
@keyframes grid-wave {
  0%   { background-position:  0px   0px; transform: translateX(0)    skewX(0deg); }
  25%  { background-position: 18px  -6px; transform: translateX(6px)  skewX(-0.3deg); }
  50%  { background-position: 28px   2px; transform: translateX(0)    skewX(0deg); }
  75%  { background-position: 14px   8px; transform: translateX(-6px) skewX(0.3deg); }
  100% { background-position:  0px   0px; transform: translateX(0)    skewX(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .grid-bg, .hero-grid-bg { animation: none !important; transform: none !important; }
}
/* Dark mode: lighter grid */
@media (prefers-color-scheme: dark) {
  .grid-bg, .hero-grid-bg {
    background-image:
      linear-gradient(rgba(244, 242, 236, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 242, 236, 0.035) 1px, transparent 1px);
  }
}

/* ============================================================
   NAV LOGO TIGHT SPACING
   ============================================================ */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav-logo .mark {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  margin: 0;
  color: var(--ink);
}
.nav-wordmark {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  top: -2px;
}
.nav-wordmark .nav-dot {
  color: var(--coral);
  font-size: 0.9em;
  margin-left: -1px;
}

/* ============================================================
   LIVE PREVIEW CORNER MARK - refined italic V composition
   ============================================================ */
.live-preview-mark-wrap {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 64px;
  height: 64px;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(10, 10, 11, 0.12),
    0 0 0 1px var(--line);
  z-index: 5;
  animation: lpm-float 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes lpm-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-3px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .live-preview-mark-wrap { animation: none; transform: rotate(-4deg); }
}
.live-preview-mark {
  color: var(--ink);
  display: block;
}
.live-preview-mark .lpm-v-main {
  transform-origin: center;
  animation: lpm-rise 1.2s cubic-bezier(.16,1,.3,1) 0.3s both;
}
.live-preview-mark .lpm-v-shadow {
  transform-origin: center;
  animation: lpm-rise 1.2s cubic-bezier(.16,1,.3,1) 0.5s both;
}
.live-preview-mark .lpm-dot {
  transform-origin: center;
  animation: lpm-dot 0.8s cubic-bezier(.34, 1.56, .64, 1) 1.4s both;
}
@keyframes lpm-rise {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lpm-dot {
  0%   { opacity: 0; transform: scale(0); }
  60%  { transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .live-preview-mark .lpm-v-main,
  .live-preview-mark .lpm-v-shadow,
  .live-preview-mark .lpm-dot { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   BB-OPTION ICONS - icons for all preview-flow crafter tiles
   Each bb-option becomes a card-like tile with an icon, label, and hover lift.
   ============================================================ */
.bb-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
  margin: 18px 0 12px;
}
.bb-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 22px 14px 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.16, 1, .3, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  min-height: 116px;
  text-align: center;
  outline: none;
}
.bb-option::before {
  /* Icon container */
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--bone) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  margin-bottom: 4px;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(.16,1,.3,1);
}
.bb-option:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 10, 11, 0.1);
}
.bb-option:hover::before {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  transform: scale(1.05);
}
.bb-option.is-selected,
.bb-option.selected {
  border-color: var(--coral);
  background: var(--coral-soft);
  color: var(--coral-deep);
}
.bb-option.is-selected::before,
.bb-option.selected::before {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
}
.bb-option-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-60);
  margin-top: -2px;
  letter-spacing: 0;
}
.bb-option.is-selected .bb-option-sub,
.bb-option.selected .bb-option-sub { color: var(--coral-deep); }

/* Specific icon per bb-option (by data-value attribute) - using inline SVG via background-image */

/* Step 2 (business_what) icons */
/* Step 3 (business_for / audience) icons */
.bb-option[data-value="small_business"]::before,
/* Step 4 (feeling) icons */
.bb-option[data-value="confident"]::before    { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5M2 12l10 5 10-5"/></svg>'); }
.bb-option[data-value="calm"]::before         { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12 Q 7 6 12 12 T 22 12"/><path d="M2 18 Q 7 14 12 18 T 22 18" opacity="0.5"/></svg>'); }
.bb-option[data-value="bold"]::before         { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16v16H4z"/></svg>'); }
.bb-option[data-value="approachable"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="9"/><path d="M8 14s1.5 2 4 2 4-2 4-2M9 9h.01M15 9h.01"/></svg>'); }
.bb-option[data-value="premium"]::before      { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2l3 7h7l-5.5 4.5L18.5 21 12 17l-6.5 4 2-7.5L2 9h7z"/></svg>'); }
.bb-option[data-value="playful"]::before      { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="8" r="3"/><circle cx="18" cy="8" r="3"/><circle cx="12" cy="18" r="3"/></svg>'); }
.bb-option[data-value="serious"]::before      { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="6" width="16" height="3"/><rect x="4" y="13" width="16" height="3"/></svg>'); }
.bb-option[data-value="modern"]::before       { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12h18M12 3v18M5 5l14 14M19 5L5 19"/></svg>'); }
.bb-option[data-value="classic"]::before      { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M4 22V8l8-6 8 6v14"/><path d="M9 22V14h6v8M8 8h8"/></svg>'); }

/* Step 5 (avoid) icons */
.bb-option[data-value="corporate and stiff"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="3" width="16" height="18" rx="0"/><path d="M4 9h16M4 15h16M10 21V9M14 21V9"/></svg>'); }
.bb-option[data-value="generic and forgettable"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="9"/></svg>'); }
.bb-option[data-value="loud and attention-grabbing"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5L6 9H2v6h4l5 4z"/><path d="M19 12c0-3-2-5-4-5M22 12c0-5-4-9-9-9"/></svg>'); }
.bb-option[data-value="sterile and clinical"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M9 3v6.5L4 19a2 2 0 0 0 1.7 3h12.6a2 2 0 0 0 1.7-3l-5-9.5V3"/><path d="M7 3h10M9 14h6"/></svg>'); }
.bb-option[data-value="childish or unprofessional"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="8" cy="9" r="2"/><circle cx="16" cy="9" r="2"/><path d="M7 16c2 2 8 2 10 0"/></svg>'); }

/* No preference / Surprise me / Other - special icons */
.bb-option[data-value=""]::before,
.bb-option[data-value="no-preference"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="9"/><path d="M9 9l6 6M15 9l-6 6"/></svg>'); }
.bb-option[data-value="surprise"]::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v4M12 18v4M2 12h4M18 12h4M4.9 4.9l2.8 2.8M16.3 16.3l2.8 2.8M4.9 19.1l2.8-2.8M16.3 7.7l2.8-2.8"/></svg>'); }
.bb-option.bb-option-other::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5v14M5 12h14"/></svg>'); }

/* Step 6 (colors) - swatch tiles */
.bb-option[data-value="warm"]::before { background: linear-gradient(135deg, #FF5B3A 0%, #D9A04A 100%); }
.bb-option[data-value="cool"]::before { background: linear-gradient(135deg, #2A5F8F 0%, #1F3A4C 100%); }
.bb-option[data-value="neutral"]::before { background: linear-gradient(135deg, #C9B098 0%, #6B5640 100%); }
.bb-option[data-value="bold-colors"]::before,
.bb-option[data-value="boldcolors"]::before { background: linear-gradient(135deg, #FF5B3A 0%, #0A0A0B 100%); }
.bb-option[data-value="monochrome"]::before { background: linear-gradient(135deg, #FFFFFF 0%, #0A0A0B 100%); }

@media (max-width: 540px) {
  .bb-options { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bb-option { min-height: 96px; padding: 16px 10px 12px; font-size: 13px; }
  .bb-option::before { width: 40px; height: 40px; background-size: 24px 24px; }
}

/* ============================================================
   FIX BATCH - addresses post-deploy feedback
   ============================================================ */

/* Fix "THE SHIFT" section layout + dark mode contrast */
.section-shift,
.shift-section,
[class*="shift"] {
  position: relative !important;
  z-index: 2;
}
.shift-grid,
.shift-row,
.shift-cards {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  width: 100% !important;
}
@media (max-width: 920px) {
  .shift-grid, .shift-row, .shift-cards {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
  }
}
.shift-card,
.shift-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 20px;
  color: var(--ink) !important;
}
.shift-card h3,
.shift-card h4,
.shift-card p,
.shift-card .num,
.shift-card .number,
.shift-item h3,
.shift-item p {
  color: var(--ink) !important;
}
.shift-card .num,
.shift-card .number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-60) !important;
  letter-spacing: 0.1em;
}

/* Dark mode override - prevent white-on-white */
@media (prefers-color-scheme: dark) {
  .shift-card,
  .shift-item {
    background: rgba(244, 242, 236, 0.04) !important;
    border-color: rgba(244, 242, 236, 0.12) !important;
  }
  .shift-card,
  .shift-card *,
  .shift-item,
  .shift-item * {
    color: var(--ink) !important;
  }
}

/* Section title visibility */
.shift-title,
.shift-eyebrow,
.section-shift h2,
.section-shift .eyebrow {
  color: var(--ink) !important;
}

/* ============================================================
   "Tap. Tap. Brand built." typography polish
   ============================================================ */
.hero-headline {
  font-family: 'Cormorant Garamond', Fraunces, Georgia, serif !important;
  font-style: normal;
  font-weight: 500 !important;
  font-size: clamp(56px, 8.5vw, 108px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.045em !important;
  margin: 16px 0 24px;
  color: var(--ink);
}
.hero-headline .accent {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}
.hero-headline .dot {
  color: var(--coral);
  font-style: italic;
}

/* ============================================================
   Brand builder page number digits (1/6, 2/6 etc)
   Make them feel intentional - monospace, refined
   ============================================================ */
.bb-eyebrow,
.bb-progress-step,
.bb-progress-num,
.bb-step-num {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--ink-60) !important;
  font-weight: 600;
}
.bb-eyebrow em,
.bb-progress-step em {
  font-style: normal;
  color: var(--coral);
  font-weight: 700;
}

/* ============================================================
   V mark on builder/error pages (left corner) - make consistent
   ============================================================ */
.bb-header-logo,
.bb-nav-logo,
.error-logo,
.builder-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* Universal mark sizing */
.bb-header-logo svg,
.bb-nav-logo svg,
.builder-logo svg {
  width: 32px !important;
  height: 32px !important;
  color: var(--ink) !important;
}

/* ============================================================
   FOOTER DOT - tighten to match nav
   ============================================================ */
.footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.footer-logo .dot,
.footer-wordmark .dot,
.footer-logo span:last-child {
  color: var(--coral) !important;
  margin-left: -1px !important;
}
.footer-wordmark {
  display: inline-flex !important;
  align-items: baseline !important;
}

/* ============================================================
   FOOTER TAGLINE - format as 2 lines
   ============================================================ */
.footer-tagline {
  display: block !important;
  white-space: pre-line !important;
}

/* ============================================================
   BB-OPTION ICONS - corrected data-value targeting
   These match the ACTUAL data-value strings used in vellem-preview.html
   ============================================================ */

/* Step 2: business_what */
.bb-option[data-value="SaaS product"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="14" rx="2"/><path d="M8 21h8M12 18v3M7 9l2 2-2 2M13 13h4"/></svg>');
}
.bb-option[data-value="service business"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="7" r="3"/><path d="M3 21v-2a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v2"/><circle cx="17" cy="7" r="2.5"/><path d="M19 14c2 0 3 1.5 3 3v2"/></svg>');
}
.bb-option[data-value="physical product"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M21 16V8a2 2 0 0 0-1-1.7l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.7l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/><path d="M3.3 7l8.7 5 8.7-5M12 22V12"/></svg>');
}
.bb-option[data-value="coaching practice"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3l3 7h7l-5.5 4.5L18.5 22 12 18l-6.5 4 2-7.5L2 10h7z"/></svg>');
}
.bb-option[data-value="creator business"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2l8 8-12 12H2v-8z"/><path d="M14 2l8 8M9 16l-3-3"/></svg>');
}

/* Step 3: business_for (audience) */
.bb-option[data-value="first-time founders"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L3 8l9 6 9-6-9-6z"/><path d="M3 16l9 6 9-6"/></svg>');
}
.bb-option[data-value="small business owners"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="7" width="18" height="14" rx="1"/><path d="M3 7l3-4h12l3 4M9 21V12h6v9"/></svg>');
}
.bb-option[data-value="professional consumers"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="7" width="18" height="13" rx="2"/><path d="M9 7V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v3"/><path d="M3 13h18"/></svg>');
}
.bb-option[data-value="everyday consumers"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><path d="M3 6h18M16 10a4 4 0 0 1-8 0"/></svg>');
}
.bb-option[data-value="creators and influencers"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23C73D1F" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"/><circle cx="12" cy="12" r="9" stroke-dasharray="4 3"/><circle cx="21" cy="3" r="1.5" fill="%23C73D1F"/></svg>');
}

/* Step 6: color preferences */
.bb-option[data-value="warm-tones"]::before,
.bb-option[data-value="warm tones"]::before {
  background: linear-gradient(135deg, #FF5B3A 0%, #D9A04A 100%) !important;
}
.bb-option[data-value="cool-tones"]::before,
.bb-option[data-value="cool tones"]::before {
  background: linear-gradient(135deg, #2A5F8F 0%, #1F3A4C 100%) !important;
}
.bb-option[data-value="neutral-tones"]::before,
.bb-option[data-value="neutral tones"]::before {
  background: linear-gradient(135deg, #C9B098 0%, #6B5640 100%) !important;
}
.bb-option[data-value="bold-tones"]::before,
.bb-option[data-value="bold tones"]::before,
.bb-option[data-value="bold colors"]::before {
  background: linear-gradient(135deg, #FF5B3A 0%, #0A0A0B 100%) !important;
}
.bb-option[data-value="monochrome"]::before {
  background: linear-gradient(135deg, #FFFFFF 0%, #0A0A0B 100%) !important;
}
.bb-option[data-value="surprise"]::before {
  background: conic-gradient(from 0deg, #FF5B3A, #D9A04A, #2A5F8F, #6B2E3A, #FF5B3A) !important;
}

/* ============================================================
   Blog featured guide - designer-grade lockup
   ============================================================ */
.blog-featured-lockup {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  padding: 24px;
}
.blog-featured-mark {
  flex-shrink: 0;
  color: var(--ink);
  animation: featured-mark-rotate 18s linear infinite;
}
@keyframes featured-mark-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.blog-featured-lockup-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-featured-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-60);
  font-weight: 600;
}
.blog-featured-stat {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.blog-featured-stat-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-60);
  letter-spacing: -0.005em;
}
@media (prefers-reduced-motion: reduce) {
  .blog-featured-mark { animation: none; }
}

/* ============================================================
   HERO V2 - clean rebuild
   All elements namespaced with -v2 suffix to prevent conflicts.
   Centered, properly-padded, mobile-responsive, dark-mode aware.
   ============================================================ */

/* Top nav */
.hero-nav.v2 {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px 0;
}
.hero-nav.v2 .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.hero-nav.v2 .nav-logo .mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  color: var(--ink);
}
.hero-nav.v2 .nav-wordmark {
  display: inline-flex;
  align-items: baseline;
}
.hero-nav.v2 .nav-wordmark .nav-dot {
  color: var(--coral);
  margin-left: -1px;
}
.hero-nav.v2 .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.hero-nav.v2 .nav-links a {
  color: var(--ink-70);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-nav.v2 .nav-links a:hover { color: var(--coral); }
.hero-nav.v2 .nav-links .nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-nav.v2 .nav-links .nav-cta:hover {
  background: var(--coral);
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .hero-nav.v2 .nav-links a:not(.nav-cta) { display: none; }
  .hero-nav.v2 { padding: 16px 20px 0; }
}

/* ===== Hero V2 ===== */
.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 56px 32px 80px;
}
.hero-v2-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 10, 11, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 11, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  animation: grid-wave 18s ease-in-out infinite;
  pointer-events: none;
}
@media (prefers-color-scheme: dark) {
  .hero-v2-grid-bg {
    background-image:
      linear-gradient(rgba(244, 242, 236, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 242, 236, 0.035) 1px, transparent 1px);
  }
}
.hero-v2-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(255, 91, 58, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-v2-text {
  min-width: 0; /* allow text to wrap, not overflow */
  max-width: 600px;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 6px;
  font-size: 12.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(10, 10, 11, 0.04);
}
.hero-v2-pill {
  background: var(--ink);
  color: var(--paper);
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.hero-v2-pill-text {
  color: var(--ink-70);
  font-weight: 500;
  padding-right: 8px;
}

.hero-v2-tension {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--ink-60);
  margin: 0 0 10px;
  line-height: 1.4;
}

.hero-v2-headline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500;
  font-size: clamp(56px, 8.5vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 4px 0 20px;
  color: var(--ink);
}
.hero-v2-headline .accent {
  font-style: italic;
  color: var(--coral);
}
.hero-v2-headline .dot {
  color: var(--coral);
  font-style: italic;
}

.hero-v2-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-70);
  margin: 0 0 28px;
  max-width: 500px;
}

.hero-v2-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-v2-cta-primary {
  background: var(--coral);
  color: white;
  border: none;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(255, 91, 58, 0.3);
}
.hero-v2-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 91, 58, 0.4);
}
.hero-v2-cta-primary .arrow {
  transition: transform 0.3s ease;
}
.hero-v2-cta-primary:hover .arrow { transform: translateX(4px); }

.hero-v2-cta-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 14.5px 26px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-v2-cta-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero-v2-risk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-60);
  margin: 12px 0 18px;
  line-height: 1.45;
}
.hero-v2-risk .risk-dot {
  color: var(--coral);
  font-size: 8px;
  flex-shrink: 0;
}

.hero-v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13.5px;
  color: var(--ink-70);
  margin-top: 4px;
}
.hero-v2-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero-v2-meta-item .check { color: var(--coral); font-weight: 700; }

/* Hero V2 visual (right column) */
.hero-v2-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero-v2-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 24px 60px rgba(10, 10, 11, 0.08),
    0 8px 24px rgba(10, 10, 11, 0.04);
  transform: rotate(-1.5deg);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.hero-v2-card:hover { transform: rotate(0deg) translateY(-4px); }

.hero-v2-card-corner-mark {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 68px;
  height: 68px;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(10, 10, 11, 0.12), 0 0 0 1px var(--line);
  z-index: 5;
  animation: lpm-float 6s ease-in-out infinite;
}
@keyframes lpm-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-3px) rotate(2deg); }
}
.hero-v2-card-corner-mark svg { color: var(--ink); display: block; }
.lpm-v-main {
  animation: lpm-rise 1.2s cubic-bezier(.16,1,.3,1) 0.3s both;
  transform-origin: center;
}
.lpm-v-shadow {
  animation: lpm-rise 1.2s cubic-bezier(.16,1,.3,1) 0.5s both;
}
.lpm-dot {
  animation: lpm-dot 0.8s cubic-bezier(.34, 1.56, .64, 1) 1.4s both;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes lpm-rise {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lpm-dot {
  0%   { opacity: 0; transform: scale(0); }
  60%  { transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2-card-corner-mark,
  .lpm-v-main, .lpm-v-shadow, .lpm-dot { animation: none; opacity: 1; transform: none; }
}

.hero-v2-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-60);
  margin-bottom: 18px;
}
.hero-v2-card-label .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

.hero-v2-card-stage {
  background: linear-gradient(135deg, var(--bone) 0%, rgba(244, 242, 236, 0.5) 100%);
  border-radius: 18px;
  padding: 38px 24px;
  text-align: center;
  margin-bottom: 18px;
}
.hero-v2-wm {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero-v2-wm .accent { color: var(--coral); }
.hero-v2-card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-v2-card-meta .sep { color: var(--ink-60); opacity: 0.5; }

.hero-v2-input-wrap {
  display: block;
  margin-bottom: 14px;
}
.hero-v2-input-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  margin-bottom: 6px;
  font-weight: 600;
}
.hero-v2-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 6px 0 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-v2-input:focus {
  outline: none;
  border-bottom-color: var(--coral);
}
.hero-v2-input::placeholder { color: var(--ink-60); }

.hero-v2-card-tip {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-60);
  text-align: center;
  line-height: 1.4;
}

/* MOBILE - hero v2 stacks */
@media (max-width: 920px) {
  .hero-v2-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .hero-v2-text { max-width: 100%; }
  .hero-v2-headline { font-size: clamp(44px, 11vw, 80px); }
  .hero-v2-card { transform: rotate(0deg); }
  .hero-v2 { padding: 36px 20px 56px; }
}

/* ============================================================
   BRAND STRIP V2 - infinite marquee
   ============================================================ */
.brand-strip-v2 {
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 36px;
  overflow: hidden;
}
.brand-strip-v2-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-60);
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}
.brand-strip-v2-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.brand-strip-v2-row {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: bs2-marquee 40s linear infinite;
}
.brand-strip-v2:hover .brand-strip-v2-row { animation-play-state: paused; }
@keyframes bs2-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-strip-v2-row {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
.bs2-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-70);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.bs2-item:hover { color: var(--ink); }
.bs2-item:hover svg { color: var(--coral); }
.bs2-item svg { color: var(--ink-70); transition: color 0.25s ease; }
.bs2-text.bold { font-weight: 700; }
.bs2-text.serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
}
.bs2-dot, .bs2-x { color: var(--coral); }

/* ============================================================
   RECENT KITS V2
   ============================================================ */
.recent-kits-v2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px;
}
.rk2-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.rk2-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink-60);
  margin-bottom: 18px;
}
.rk2-label .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}
.rk2-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 14px;
}
.rk2-sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}
.rk2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.rk2-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}
.rk2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 10, 11, 0.1);
}
.rk2-card-stage {
  padding: 44px 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 200px;
  justify-content: center;
}
.rk2-card-wm {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.rk2-card-meta {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.rk2-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.rk2-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-60);
  margin-bottom: 14px;
}
.rk2-card-swatches {
  display: flex;
  gap: 6px;
}
.rk2-card-swatches span {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: block;
}
.rk2-cta {
  text-align: center;
}

@media (max-width: 720px) {
  .recent-kits-v2 { padding: 56px 20px; }
  .rk2-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   THE SHIFT V2
   ============================================================ */
.shift-v2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}
.shift-v2-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}
.shift-v2-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink-60);
  margin: 0 0 16px;
}
.shift-v2-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.shift-v2-title s {
  text-decoration: line-through;
  color: var(--ink-60);
  font-style: italic;
  text-decoration-thickness: 1.5px;
}
.shift-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.shift-v2-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px 30px;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}
.shift-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 10, 11, 0.08);
}
.shift-v2-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
}
.shift-v2-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.shift-v2-card-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}

@media (max-width: 920px) {
  .shift-v2-grid { grid-template-columns: 1fr; gap: 18px; }
  .shift-v2 { padding: 56px 20px 72px; }
}

/* DARK MODE - all v2 elements */
@media (prefers-color-scheme: dark) {
  .hero-v2-card,
  .rk2-card,
  .rk2-card-meta,
  .shift-v2-card,
  .brand-strip-v2 {
    background: rgba(244, 242, 236, 0.03);
    border-color: rgba(244, 242, 236, 0.12);
  }
  .hero-v2-card-corner-mark {
    background: rgba(244, 242, 236, 0.06);
  }
  .hero-v2-badge {
    background: rgba(244, 242, 236, 0.04);
    border-color: rgba(244, 242, 236, 0.12);
  }
}

/* ============================================================
   PREVIEW PROTECTION CSS
   Prevents easy copy/save/screenshot bypass.
   Real security is in the worker proxy + watermark.
   ============================================================ */
.bb-preview {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.bb-preview img {
  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
  pointer-events: none !important;
}
.bb-asset-main {
  position: relative;
}
.bb-asset-main::after {
  /* Transparent overlay that prevents direct image interaction */
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto;
  cursor: not-allowed;
}
/* Allow palette interaction etc */
.bb-preview button,
.bb-preview a {
  -webkit-user-select: auto !important;
  user-select: auto !important;
  pointer-events: auto !important;
}

/* ============================================================
   V MARK CONSISTENCY - force same V mark sizing/color across all pages
   ============================================================ */
.nav-logo .mark,
.bb-header-logo .mark,
.builder-logo .mark,
.error-logo .mark,
nav .nav-logo svg.mark,
.bb-nav .nav-logo svg.mark {
  width: 32px !important;
  height: 32px !important;
  color: var(--ink) !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 !important;
}
.nav-logo .mark .mark-coral-dot,
.bb-header-logo .mark .mark-coral-dot,
.builder-logo .mark .mark-coral-dot {
  fill: #FF5B3A !important;
}

/* ============================================================
   FOOTER WORDMARK COLOR FIX
   Footer is on bone background in light mode, needs proper contrast.
   Was rendering wrong in dark mode.
   ============================================================ */
.footer-logo,
.footer-logo span,
.footer-wordmark {
  color: var(--ink) !important;
}
.footer-logo .nav-dot,
.footer-logo .dot,
.footer-wordmark .nav-dot,
.footer-wordmark .dot {
  color: #FF5B3A !important;
}
.footer-mark {
  color: var(--ink) !important;
}
.footer-mark .mark-coral-dot {
  fill: #FF5B3A !important;
}
@media (prefers-color-scheme: dark) {
  .footer-logo,
  .footer-logo span,
  .footer-wordmark {
    color: var(--ink) !important; /* var(--ink) flips automatically in dark mode */
  }
}

/* ============================================================
   PRICING PAGE V2 - 3-tier display
   ============================================================ */
.pricing-hero {
  position: relative;
  padding: 80px 32px 60px;
  text-align: center;
  overflow: hidden;
}
.pricing-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 10, 11, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 11, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  animation: grid-wave 18s ease-in-out infinite;
  pointer-events: none;
}
.pricing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.pricing-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 18px;
}
.pricing-h1 .italic { font-style: italic; color: var(--coral); }
.pricing-deck {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== Tiers ===== */
.pricing-tiers {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pricing-tier {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}
.pricing-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 10, 11, 0.1);
}
.pricing-tier.featured {
  border-color: var(--coral);
  border-width: 2px;
  background: linear-gradient(180deg, var(--coral-soft) 0%, var(--paper) 30%);
  transform: scale(1.03);
  box-shadow: 0 16px 36px rgba(255, 91, 58, 0.15);
}
.pricing-tier.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.pt-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(255, 91, 58, 0.35);
}
.pt-header {
  margin-bottom: 18px;
}
.pt-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 4px;
}
.pt-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-60);
}
.pt-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pt-price-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.pt-price-period {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--ink-60);
  font-weight: 500;
}
.pt-anchor {
  font-size: 13px;
  color: var(--ink-60);
  margin-bottom: 22px;
}
.pt-anchor s {
  text-decoration: line-through;
  color: var(--ink-60);
  opacity: 0.7;
}
.pt-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.pt-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
}
.pt-features li .check {
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 15px;
}
.pt-features li em {
  font-style: normal;
  color: var(--ink-60);
  font-size: 13px;
}
.pt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  margin-bottom: 16px;
}
.pt-cta.primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 91, 58, 0.3);
}
.pt-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 91, 58, 0.4);
}
.pt-cta.secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.pt-cta.secondary:hover {
  background: var(--ink);
  color: var(--paper);
}
.pt-cta .arrow { transition: transform 0.3s ease; }
.pt-cta:hover .arrow { transform: translateX(4px); }
.pt-fineprint {
  font-size: 12.5px;
  color: var(--ink-60);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.pt-fineprint strong { color: var(--ink); }

@media (max-width: 920px) {
  .pricing-tiers-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-tier.featured { transform: none; }
  .pricing-tier.featured:hover { transform: translateY(-4px); }
  .pricing-tiers { padding: 16px 20px 60px; }
}

/* ===== Comparison table ===== */
.pricing-compare {
  background: var(--bone);
  padding: 80px 32px 80px;
  border-top: 1px solid var(--line);
}
.pc-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.pc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.pc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.pc-title .italic { font-style: italic; color: var(--coral); }
.pc-table-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.pc-table {
  width: 100%;
  border-collapse: collapse;
}
.pc-table thead th {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 18px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-60);
}
.pc-table thead th.pc-us {
  color: var(--coral);
}
.pc-table tbody td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: top;
  color: var(--ink);
}
.pc-table tbody td:first-child {
  color: var(--ink-90);
  font-weight: 500;
}
.pc-table tbody td.pc-them { color: var(--ink-60); }
.pc-table tbody td.pc-us {
  background: rgba(255, 91, 58, 0.04);
  color: var(--ink);
}
.pc-table tbody td.pc-us strong { color: var(--coral-text); }
.pc-table tbody tr:last-child td { border-bottom: none; }
.pc-table em { font-style: normal; color: var(--ink-60); font-size: 12.5px; }

@media (max-width: 720px) {
  .pricing-compare { padding: 56px 16px; }
  .pc-table-wrap { font-size: 13px; }
  .pc-table thead th, .pc-table tbody td { padding: 12px 14px; }
}

/* ===== Pricing FAQ ===== */
.pricing-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
}
.pf-header { text-align: center; margin-bottom: 40px; }
.pf-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink-60);
  margin-bottom: 14px;
}
.pf-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.pf-list { display: flex; flex-direction: column; gap: 12px; }
.pf-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color 0.2s ease;
}
.pf-item[open] { border-color: var(--coral); }
.pf-item summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.pf-item summary::-webkit-details-marker { display: none; }
.pf-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--coral);
  transition: transform 0.25s ease;
}
.pf-item[open] summary::after { content: "−"; }
.pf-answer {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-70);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ===== Final CTA ===== */
.pricing-cta-final {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 32px;
  text-align: center;
}
.pcf-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.pcf-deck {
  font-size: 17px;
  color: rgba(244, 242, 236, 0.7);
  margin: 0 0 32px;
}
.pcf-buttons {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pcf-primary {
  background: var(--coral);
  color: white;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(255, 91, 58, 0.4);
  transition: all 0.3s ease;
}
.pcf-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 91, 58, 0.5);
}
.pcf-primary .arrow { transition: transform 0.3s ease; }
.pcf-primary:hover .arrow { transform: translateX(4px); }
.pcf-secondary {
  color: rgba(244, 242, 236, 0.7);
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.2s ease;
}
.pcf-secondary:hover { color: var(--coral); }

/* ============================================================
   FOUNDING COUNTER - real urgency
   ============================================================ */
.founding-counter {
  max-width: 880px;
  margin: 0 auto 16px;
  padding: 0 32px;
}
.founding-counter-inner {
  background: linear-gradient(135deg, var(--coral-soft) 0%, rgba(255, 91, 58, 0.08) 100%);
  border: 1px solid rgba(255, 91, 58, 0.3);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
}
.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--coral-text);
}
.fc-eyebrow .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}
.fc-text { color: var(--ink); flex-grow: 1; }
.fc-text strong { color: var(--coral-text); font-weight: 700; }
.fc-after {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-60);
  font-size: 14px;
}
@media (max-width: 720px) {
  .founding-counter-inner { padding: 12px 16px; font-size: 13px; }
  .fc-after { width: 100%; }
}

/* ============================================================
   EXIT-INTENT MODAL
   ============================================================ */
.exit-intent-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.exit-intent-modal.visible {
  pointer-events: auto;
  opacity: 1;
}
.eim-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(4px);
}
.eim-content {
  position: relative;
  background: var(--paper);
  max-width: 460px;
  margin: 8vh auto 0;
  border-radius: 24px;
  padding: 40px 36px 32px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(10, 10, 11, 0.3);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.exit-intent-modal.visible .eim-content {
  transform: translateY(0) scale(1);
}
.eim-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--ink-60);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
}
.eim-close:hover { background: var(--bone); color: var(--ink); }
.eim-mark {
  color: var(--ink);
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}
.eim-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--coral-text);
  margin-bottom: 12px;
}
.eim-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 12px;
}
.eim-deck {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0 0 22px;
}
.eim-deck strong { color: var(--coral-text); font-weight: 700; }
.eim-form {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-direction: column;
}
.eim-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.eim-input:focus { border-color: var(--coral); }
.eim-submit {
  padding: 14px 22px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 91, 58, 0.3);
}
.eim-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 91, 58, 0.4);
}
.eim-fineprint {
  font-size: 12.5px;
  color: var(--ink-60);
  margin: 0;
}
.eim-skip {
  background: transparent;
  border: none;
  color: var(--ink-60);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.eim-skip:hover { color: var(--coral); }
.eim-success {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--coral-text);
  font-size: 16px;
  padding: 14px 0;
  margin: 0;
}

/* ============================================================
   SUCCESS PAGE - share-after-purchase card
   ============================================================ */
.su-share-card {
  margin: 40px auto 24px;
  max-width: 720px;
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--bone) 100%);
  border: 1px solid rgba(255, 91, 58, 0.25);
  border-radius: 20px;
  text-align: center;
}
.su-share-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--coral-text);
  margin-bottom: 16px;
}
.su-share-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 12px;
}
.su-share-discount {
  font-style: italic;
  color: var(--coral-text);
  white-space: nowrap;
}
.su-share-deck {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0 auto 24px;
  max-width: 520px;
}
.su-share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.su-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.su-share-btn.twitter {
  background: #0A0A0B;
  color: white;
}
.su-share-btn.twitter:hover {
  background: var(--coral);
  transform: translateY(-2px);
}
.su-share-btn.linkedin {
  background: #0a66c2;
  color: white;
}
.su-share-btn.linkedin:hover {
  background: #084e9c;
  transform: translateY(-2px);
}
.su-share-btn.copy {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.su-share-btn.copy:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}
.su-share-tracking {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-60);
  margin: 0;
}
.su-share-tracking code {
  background: var(--paper);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--coral-text);
  font-weight: 700;
  border: 1px solid var(--line);
}

@media (max-width: 540px) {
  .su-share-card { padding: 24px 20px; }
  .su-share-title { font-size: 26px; }
  .su-share-buttons { flex-direction: column; }
  .su-share-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FOUNDER NOTE on /about
   ============================================================ */
.founder-note {
  margin-bottom: 56px;
  background: linear-gradient(135deg, var(--bone) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px 32px;
}
.founder-note-inner {
  max-width: 620px;
}
.founder-note-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--coral-text);
  margin-bottom: 18px;
}
.founder-note-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.founder-note-text em {
  font-style: italic;
  color: var(--coral-text);
}
.founder-note-signature {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}
.founder-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-60);
  margin: 0;
  font-weight: 500;
}
.founder-email {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--coral);
  text-decoration: none;
  margin-top: 4px;
  font-weight: 600;
}
.founder-email:hover { text-decoration: underline; }

/* ============================================================
   BUILDER STEP 6 - email capture field
   ============================================================ */
.bb-email-capture {
  margin: 28px 0 20px;
  padding: 22px 24px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.25s ease;
}
.bb-email-capture:focus-within {
  border-color: var(--coral);
  background: var(--coral-soft);
}
.bb-email-label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.bb-email-help {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-60);
  margin: 0 0 12px;
  line-height: 1.4;
}
.bb-email-input {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.bb-email-input::placeholder {
  color: var(--ink-60);
}
.bb-email-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 91, 58, 0.12);
}

@media (max-width: 540px) {
  .bb-email-capture { padding: 18px 16px; margin: 20px 0 16px; }
  .bb-email-label { font-size: 17px; }
}

/* ============================================================
   FOOTER FORCE-FIX (override any leaking color)
   ============================================================ */
.site-footer .footer-logo,
footer .footer-logo,
.footer-logo {
  color: var(--ink) !important;
  text-decoration: none !important;
}
.footer-wordmark {
  color: var(--ink) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.footer-wordmark .dot,
.footer-logo .dot {
  color: #FF5B3A !important;
  margin-left: -1px;
}
.footer-mark {
  color: var(--ink) !important;
}
.footer-mark .mark-coral-dot {
  fill: #FF5B3A !important;
}

/* Footer tagline - force 2 lines, prevent third-line wrap */
.footer-tagline {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--ink-70) !important;
  max-width: 100% !important;
  text-wrap: balance;
  white-space: normal;
  margin: 12px 0 16px;
}
.footer-tagline br {
  display: inline;
}

@media (max-width: 720px) {
  .footer-tagline {
    font-size: 13px !important;
  }
}

/* Brand strip seamless marquee */
.brand-strip-v2-row {
  gap: 80px !important;  /* increase from 64px for better visual rhythm */
}
.brand-strip-v2-track {
  padding: 8px 0;
}
@media (max-width: 720px) {
  .brand-strip-v2-row {
    gap: 48px !important;
  }
}

/* ============================================================
   PREVIEW PAGE REDESIGN - modern, engaging, professional
   ============================================================ */

/* Asset cards - more refined treatment */
.bb-preview {
  max-width: 1180px !important;
  padding: 64px 32px 100px !important;
}

.bb-preview-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.bb-preview-eyebrow {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  font-weight: 700 !important;
  color: var(--coral-text) !important;
  margin: 0 0 16px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bb-preview-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: live-pulse 2s ease-in-out infinite;
}

.bb-preview-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(40px, 6vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
  margin: 0 0 14px !important;
  color: var(--ink);
}
.bb-preview-title em {
  font-style: italic;
  color: var(--coral);
}

.bb-preview-deck {
  font-size: 17px !important;
  line-height: 1.55 !important;
  color: var(--ink-70) !important;
  margin: 0 !important;
  max-width: 560px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Preview grid - cleaner layout */
.bb-preview-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 28px !important;
  margin-bottom: 48px !important;
}

@media (max-width: 920px) {
  .bb-preview-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Primary asset - hero treatment */
.bb-asset {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px !important;
  padding: 28px !important;
  display: flex;
  flex-direction: column;
}

.bb-asset-label {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  font-weight: 700 !important;
  color: var(--ink-60) !important;
  margin: 0 0 16px !important;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bb-asset-label em {
  font-style: normal;
  background: var(--bone);
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
}

.bb-asset-main {
  background: linear-gradient(135deg, var(--bone) 0%, rgba(244, 242, 236, 0.4) 100%) !important;
  border-radius: 16px !important;
  min-height: 340px !important;
  padding: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  overflow: hidden;
}

/* Visible "PREVIEW" badge on each image */
.bb-asset-main::after {
  content: "PREVIEW · WATERMARKED";
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 91, 58, 0.92);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bb-asset-main img {
  max-width: 90% !important;
  max-height: 280px !important;
  object-fit: contain !important;
  position: relative;
  z-index: 1;
}

/* Smaller assets - secondary, app icon, monogram in vertical stack */
.bb-asset-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

.bb-asset-small {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.bb-asset-small-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink-60);
  text-transform: uppercase;
  margin: 0;
}

.bb-asset-small-img {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bone) 0%, rgba(244, 242, 236, 0.4) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.bb-asset-small-img::after {
  content: "WM";
  position: absolute;
  top: 3px;
  right: 3px;
  background: rgba(255, 91, 58, 0.9);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
}

.bb-asset-small-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Palette display */
.bb-palette {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 32px;
}
.bb-palette-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink-60);
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* CTA section at bottom - more prominent */
.bb-cta-section {
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--paper) 100%);
  border: 1px solid rgba(255, 91, 58, 0.2);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  margin-top: 40px;
}
.bb-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 12px;
}
.bb-cta-title em {
  font-style: italic;
  color: var(--coral);
}
.bb-cta-deck {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0 auto 24px;
  max-width: 480px;
}

@media (max-width: 720px) {
  .bb-preview {
    padding: 48px 16px 80px !important;
  }
  .bb-preview-grid {
    gap: 16px !important;
  }
  .bb-asset {
    padding: 18px !important;
  }
  .bb-asset-main {
    min-height: 240px !important;
    padding: 24px !important;
  }
}
