/* eiarstudio — Editorial refined wellness magazine
   IBM Plex Sans (display + body) + IBM Plex Mono (accent)
   Deep sage·cream·ink palette. Asymmetric layouts. Noise texture. Micro-motion.
   v3.1 — 2026-05-27 (Fraunces serif removed by chairman directive,
   sans-serif single family across display/body) */

:root {
  /* Palette — deep sage as dominant, cream as canvas, ink for typographic weight, ember for accent */
  --bg: #f6f1e7;
  --bg-deep: #ede5d3;
  --surface: #fffefb;
  --surface-elev: #fbf7ed;
  --ink: #1a1814;
  --ink-soft: #3d3a32;
  --muted: #7a7466;
  --line: #ddd3bd;
  --line-soft: #e8dfc6;
  --sage: #2f4a3a;
  --sage-mid: #4e6f5b;
  --sage-soft: #d8e2da;
  --ember: #c34a2c;
  --gold: #b88a2e;

  --r-xs: 4px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 0 rgba(26,24,20,.04);
  --sh-2: 0 1px 2px rgba(26,24,20,.06), 0 8px 24px rgba(26,24,20,.05);
  --sh-3: 0 2px 8px rgba(26,24,20,.08), 0 24px 64px rgba(26,24,20,.10);

  /* V3.1 — Fraunces removed (chairman directive). Single sans family across display + body. */
  --display: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, Consolas, monospace;

  --gutter: clamp(16px, 3vw, 32px);
  --wrap: 720px;
  --wrap-wide: 1180px;
  --wrap-narrow: 640px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; text-rendering: optimizeLegibility; }

body {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(47,74,58,.025) 0%, transparent 40%),
    radial-gradient(circle at 80% 85%, rgba(184,138,46,.018) 0%, transparent 45%);
  background-attachment: fixed;
  min-height: 100vh;
}

::selection { background: var(--sage); color: var(--bg); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  font-weight: 600;
}
h1 em {
  font-style: normal;
  font-weight: 600;
  color: var(--sage);
}
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 600; margin-top: 4rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
h4 { font-size: 1.05rem; font-weight: 600; }

p, ul, ol { margin: 0 0 1rem; line-height: 1.65; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: .3em; }
strong { font-weight: 600; color: var(--ink); }

a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(47,74,58,.35);
  transition: text-decoration-color 180ms ease, color 180ms ease;
}
a:hover { text-decoration-color: var(--sage); color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }
hr { border: 0; height: 1px; background: var(--line); margin: 4rem 0; }

blockquote {
  border-left: 3px solid var(--sage);
  padding: .4rem 0 .4rem 1.4rem;
  margin: 1.6rem 0;
  font-family: var(--body);
  font-style: normal;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

code, pre, .mono { font-family: var(--mono); font-size: .9em; }
code { background: var(--bg-deep); padding: .12em .4em; border-radius: var(--r-xs); border: 1px solid var(--line-soft); }

main { max-width: var(--wrap-wide); margin: 0 auto; padding: 16px var(--gutter) 96px; }

/* Site header */
.site-header {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 28px var(--gutter) 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand-text { display: inline; }
.brand-mark {
  font-style: normal;
  font-weight: 500;
  color: var(--sage);
}
.site-nav { display: flex; gap: 28px; font-family: var(--body); font-size: .92rem; font-weight: 500; }
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.005em;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

/* Hero — asymmetric, magazine lead */
.hero { padding: 56px 0 64px; position: relative; }
.hero-inner { max-width: 900px; position: relative; }
.hero-inner::before {
  content: '— eiarstudio';
  display: block;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}
.hero h1 { max-width: 16ch; margin-bottom: 28px; }
.hero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55; color: var(--ink-soft); max-width: 56ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Buttons */
.cta, .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--body); font-size: .96rem; font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.cta { background: var(--sage); color: var(--bg); box-shadow: var(--sh-2); }
.cta:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); box-shadow: var(--sh-3); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink-soft); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); text-decoration: none; }

/* Card grid — bento asymmetric */
.card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin: 40px 0 64px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms ease, border-color 220ms ease;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(47,74,58,.04));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-mid);
  box-shadow: var(--sh-3);
  text-decoration: none;
}
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.45rem; line-height: 1.2; margin: 0; }
.card p { font-size: .96rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.kicker {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.card-go {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  letter-spacing: 0.005em;
  transition: gap 220ms ease;
}
.card:hover .card-go { color: var(--sage); }

/* Section — editorial */
.section { margin: 80px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); }
.section-head a {
  font-family: var(--body); font-size: .92rem; font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: color 180ms ease;
}
.section-head a:hover { color: var(--ink); }
.section-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 56ch; margin: 12px 0 28px; }
.section-free {
  background: var(--bg-deep);
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  padding: 64px var(--gutter);
  border-radius: var(--r-lg);
}

/* Product grid */
.product-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms ease, border-color 220ms ease;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--sage-mid); box-shadow: var(--sh-3); }
.product-card-link { display: block; text-decoration: none; color: var(--ink); height: 100%; }
.product-card-link:hover { text-decoration: none; }
.product-card-cover {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line-soft);
}
.product-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.free-badge {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  align-self: flex-start;
  border: 1px solid currentColor;
  padding: 3px 8px;
  border-radius: var(--r-xs);
}
.product-card-title {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.22;
  margin: 0;
}
.product-card-desc {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--line-soft);
}
.product-card-price { font-family: var(--mono); font-size: .96rem; font-weight: 600; color: var(--ink); letter-spacing: 0; }
.product-card-price-free { color: var(--ember); }
.product-card-cta { font-family: var(--body); font-size: .88rem; font-weight: 500; color: var(--sage); letter-spacing: 0.005em; }

/* Line + axis grouping */
.product-line { margin-bottom: 56px; }
.product-line-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.product-line-head h3 { font-size: 1.4rem; margin: 0; }
.product-line-head .kicker { font-size: .68rem; }

.axis-physical { --axis-color: #c34a2c; }
.axis-emotional { --axis-color: #b88a2e; }
.axis-intellectual { --axis-color: #4e6f5b; }
.axis-social { --axis-color: #8a5a3c; }
.axis-spiritual { --axis-color: #6b5b8a; }
.axis-occupational { --axis-color: #3a6b7a; }
.axis-bundle { --axis-color: #2f4a3a; }

/* Post list */
.post-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.post-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.post-list a {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 180ms ease;
}
.post-list a:hover {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-list .date {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Topic chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 36px; }
.chip {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.chip:hover, .chip.active { background: var(--sage); color: var(--bg); border-color: var(--sage); }

/* Newsletter */
.newsletter {
  max-width: var(--wrap-wide);
  margin: 80px auto 0;
  padding: 64px var(--gutter);
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  text-align: center;
}
.newsletter h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--bg);
  margin-bottom: 16px;
  font-weight: 600;
}
.newsletter p {
  font-size: 1.05rem;
  color: rgba(246,241,231,.78);
  max-width: 50ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.newsletter .cta { background: var(--bg); color: var(--ink); }
.newsletter .cta:hover { background: var(--sage-soft); color: var(--ink); }

/* Footer */
.site-footer {
  max-width: var(--wrap-wide);
  margin: 64px auto 0;
  padding: 36px var(--gutter) 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.footer-brand .brand-mark { color: var(--sage); }
.footer-social { display: flex; flex-wrap: wrap; gap: 20px; font-family: var(--body); font-size: .88rem; }
.footer-social a { color: var(--ink-soft); text-decoration: none; letter-spacing: 0.005em; }
.footer-social a:hover { color: var(--sage); }
.footer-copy { font-family: var(--mono); font-size: .76rem; color: var(--muted); letter-spacing: 0.02em; line-height: 1.5; }

/* Blog post (single) */
.post-header { max-width: var(--wrap); margin: 0 auto 40px; text-align: left; }
.post-meta {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post-header h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}
.post-lead {
  font-family: var(--body);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 56ch;
}
.post-body { max-width: var(--wrap); margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }
.post-body h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin-top: 3rem; margin-bottom: 1rem; }
.post-body h3 { margin-top: 2.2rem; margin-bottom: .8rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { margin-bottom: 1.2rem; }
.post-body blockquote { margin: 2rem 0; }
.post-body .callout {
  background: var(--sage-soft);
  border-left: 3px solid var(--sage);
  padding: 18px 22px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.6rem 0;
  font-size: .98rem;
  color: var(--ink-soft);
}
.post-body .callout strong { color: var(--ink); }

/* FAQ */
.faq { max-width: var(--wrap); margin: 64px auto 0; padding-top: 32px; border-top: 1px solid var(--line); }
.faq h2 { font-size: 1.6rem; margin-top: 0; }
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.faq-q { font-family: var(--display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--ink); }
.faq-a { font-size: .98rem; color: var(--ink-soft); line-height: 1.6; }

/* Author byline */
.byline {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 8px 0 24px;
}
.byline strong { color: var(--ink); font-weight: 500; }

/* Page helpers */
.lead {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 32px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-inner { animation: rise 800ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero-inner > :nth-child(1) { animation-delay: 80ms; }
  .hero-inner > :nth-child(2) { animation-delay: 200ms; }
  .hero-inner > :nth-child(3) { animation-delay: 340ms; }
  .hero-inner > :nth-child(4) { animation-delay: 480ms; }
  .card-grid > * { animation: rise 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  .card-grid > *:nth-child(1) { animation-delay: 120ms; }
  .card-grid > *:nth-child(2) { animation-delay: 220ms; }
  .card-grid > *:nth-child(3) { animation-delay: 320ms; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Focus accessibility */
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: var(--r-xs); }

/* Responsive — tablet */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid > *:first-child { grid-column: 1 / -1; }
  .hero { padding: 40px 0 48px; }
  .site-nav { gap: 18px; font-size: .88rem; }
}

/* Responsive — mobile */
@media (max-width: 640px) {
  body { font-size: 16px; }
  main { padding: 8px 18px 64px; }
  .site-header { padding: 22px 18px 8px; flex-wrap: wrap; gap: 14px; }
  .site-nav { gap: 18px; }
  .hero { padding: 32px 0 40px; }
  .hero-inner::before { font-size: .7rem; margin-bottom: 18px; }
  .hero h1 { max-width: none; }
  .hero p { font-size: 1rem; }
  .hero-actions .cta, .hero-actions .btn { padding: 12px 22px; font-size: .92rem; }
  .card-grid { grid-template-columns: 1fr; gap: 14px; margin: 28px 0 48px; }
  .card { padding: 24px 22px; }
  .section { margin: 48px 0; }
  .section-head h2 { font-size: 1.5rem; }
  .section-free { margin-left: -18px; margin-right: -18px; padding: 40px 18px; border-radius: var(--r-md); }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .newsletter { margin: 56px 18px 0; padding: 40px 22px; }
  .newsletter h3 { font-size: 1.6rem; }
  .post-list li { flex-direction: column; align-items: flex-start; gap: 6px; padding: 14px 0; }
  .post-list a { font-size: 1.05rem; }
  .site-footer { margin: 48px 18px 0; padding: 28px 0 48px; }
  .footer-social { gap: 14px; }
}

/* Small phones */
@media (max-width: 380px) {
  h1 { font-size: 2.1rem; }
  .site-nav { gap: 14px; font-size: .82rem; }
}

/* Hero trust signal list — 2026-05-28 매출 1 trigger 강화 */
.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  border-top: 1px solid var(--line, #e5e2dc);
  border-bottom: 1px solid var(--line, #e5e2dc);
  padding: 14px 0;
}
.hero-trust-list li {
  flex: 1 1 0;
  min-width: 140px;
  text-align: center;
  padding: 0 12px;
  font-size: 0.92rem;
  color: var(--ink-soft, #4a4a44);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  border-right: 1px solid var(--line, #e5e2dc);
}
.hero-trust-list li:last-child { border-right: none; }
.hero-trust-list li strong {
  display: block;
  color: var(--ink, #1a1a18);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}
@media (max-width: 640px) {
  .hero-trust-list { flex-wrap: wrap; }
  .hero-trust-list li { flex: 1 1 45%; padding: 8px 6px; font-size: 0.82rem; border-right: none; border-bottom: 1px solid var(--line, #e5e2dc); }
  .hero-trust-list li:nth-last-child(-n+2) { border-bottom: none; }
  .hero-trust-list li strong { font-size: 0.95rem; }
}

/* Hero featured row — top hot lead 3 진열 직격 매출 1 trigger */
.hero-featured {
  max-width: var(--wrap, 1100px);
  margin: 36px auto 56px;
  padding: 0 var(--gutter, 24px);
}
.hero-featured-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft, #4a4a44);
  margin: 0 0 16px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
.hero-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-featured-card {
  background: #fff;
  border: 1px solid var(--line, #e5e2dc);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.hero-featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 24, 0.08);
  border-color: var(--c-sage-300, #b8c4ad);
}
.hero-featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hero-featured-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--c-sage-50, #f3f5ef);
}
.hero-featured-body {
  padding: 16px 18px 18px;
}
.hero-featured-badge {
  display: inline-block;
  background: var(--c-gold-100, #f5ecd6);
  color: var(--c-gold-700, #8a6620);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.hero-featured-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ink, #1a1a18);
  min-height: 2.6em;
}
.hero-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-featured-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink, #1a1a18);
}
.hero-featured-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-sage-700, #2f4a3a);
}
@media (max-width: 900px) {
  .hero-featured-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero-featured-title { min-height: 0; }
}

/* Launch week scarcity badge — 2026-05-26 first 10 buyers offer */
.hero-launch-badge {
  display: inline-block;
  background: var(--ember, #c8521e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
@media (max-width: 640px) {
  .hero-launch-badge { font-size: 0.7rem; padding: 0.4rem 0.85rem; }
}

/* ============================================================
   Product detail page (/p/<slug>/) — magazine product feature
   v1 — 2026-05-26 (frontend-design grade 4.4 -> 7.5 target)
   ============================================================ */

.product-detail {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}

/* Hero — asymmetric split. Left copy block, right framed cover. */
.product-detail-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 32px 0 56px;
  position: relative;
}
.product-detail-head::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
}
.product-detail-head .kicker { grid-column: 1; }
.product-detail-head h1 {
  grid-column: 1;
  margin: 14px 0 24px;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  max-width: 14ch;
}
.product-detail-head h1 em { font-style: normal; color: var(--sage); }

.product-detail-price {
  grid-column: 1;
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.product-detail-price strong { font-size: 1.6rem; font-weight: 600; color: var(--sage); }
.product-detail-price .free-pair {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid currentColor;
  padding: 3px 8px;
  border-radius: var(--r-xs);
}

.product-detail-cover {
  grid-column: 2;
  grid-row: 1 / span 5;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--sh-3);
  background: var(--bg-deep);
}

/* Hero CTA cluster — above-the-fold conversion */
.product-detail-hero-cta {
  grid-column: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Trust strip — mono uppercase with subtle bullet dots */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 28px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  max-width: var(--wrap-wide);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  opacity: .55;
}

/* Body prose — magazine column */
.product-detail-body {
  max-width: var(--wrap);
  margin: 56px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
}
.product-detail-body h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  margin: 2.6rem 0 1.1rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.product-detail-body p { margin-bottom: 1.15rem; }
.product-detail-body ul { padding-left: 1.4em; }
.product-detail-body li { margin-bottom: .65em; line-height: 1.55; }
.product-detail-body li strong { color: var(--ink); }

/* Feature card grid — auto-applied to first <ul> after "What you get" h3 via p.njk replace */
.product-detail-body ul.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0 40px;
  padding: 0;
  list-style: none;
}
.product-detail-body ul.feature-grid li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 22px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.55;
  position: relative;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms ease, border-color 220ms ease;
}
.product-detail-body ul.feature-grid li:hover {
  transform: translateY(-2px);
  border-color: var(--sage-mid);
  box-shadow: var(--sh-2);
}
.product-detail-body ul.feature-grid li strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
}
.product-detail-body ul.feature-grid li::before {
  content: '';
  position: absolute;
  top: 18px; right: 18px;
  width: 8px; height: 8px;
  border-top: 1.5px solid var(--sage);
  border-right: 1.5px solid var(--sage);
  transform: rotate(45deg);
  opacity: .5;
}

/* CTA block — magazine end-of-feature push */
.product-detail-cta {
  max-width: var(--wrap);
  margin: 56px auto 0;
  padding: 48px 32px;
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-detail-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(47,74,58,.07) 0%, transparent 50%),
    radial-gradient(circle at 15% 82%, rgba(184,138,46,.05) 0%, transparent 50%);
  pointer-events: none;
}
.product-detail-cta > * { position: relative; }
.product-detail-cta .cta { margin-bottom: 14px; }
.product-detail-cta .muted {
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
  text-transform: none;
}

/* Large CTA — Stripe / Linear grade */
.cta-large {
  padding: 18px 36px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: var(--sh-3);
}
.cta-large:hover { transform: translateY(-2px); }

/* Bundle treatment — savings stat block */
.bundle-savings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}
.bundle-savings li {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 18px 22px;
  text-align: center;
  margin: 0;
}
.bundle-savings .num {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.bundle-savings .num.strike { color: var(--muted); text-decoration: line-through; text-decoration-thickness: 2px; font-size: clamp(1.4rem, 3vw, 2rem); }
.bundle-savings .num.win { color: var(--ember); }
.bundle-savings .label {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Back link */
.product-detail-back {
  max-width: var(--wrap);
  margin: 48px auto 0;
  text-align: center;
}

/* Responsive — tablet (≤960px) */
@media (max-width: 960px) {
  .product-detail-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 16px 0 40px;
  }
  .product-detail-cover {
    grid-column: 1;
    grid-row: auto;
    max-width: 420px;
    margin: 0 auto;
    order: -1;
  }
  .product-detail-head h1 { max-width: none; }
  .trust-strip { margin-top: 0; }
}

/* Responsive — mobile (≤640px) */
@media (max-width: 640px) {
  .product-detail-head { padding: 8px 0 24px; gap: 18px; }
  .product-detail-body { margin-top: 36px; font-size: 1rem; }
  .product-detail-cta { padding: 32px 20px; margin-top: 36px; }
  .cta-large { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }
  .product-detail-body ul.feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .bundle-savings { grid-template-columns: 1fr; gap: 10px; }
  .bundle-savings li { padding: 18px 16px; }
  .trust-strip { font-size: .66rem; gap: 6px 14px; padding: 14px 0; }
}

/* ============================================================
   Product detail v2 — UI mockup gallery + FAQ + Related products
   v2 — 2026-05-26 (frontend-design grade 7.0 -> 8.0 target)
   ============================================================ */

/* Shared section head (kicker + h3 + sub) — used by mockups, FAQ, related */
.ui-mockup-head {
  max-width: var(--wrap);
  margin: 64px auto 24px;
  text-align: left;
}
.ui-mockup-head .kicker { display: block; margin-bottom: 12px; }
.ui-mockup-head h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  border: 0;
  padding: 0;
}
.ui-mockup-head h3 em { font-style: normal; color: var(--sage); }
.ui-mockup-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
  line-height: 1.55;
}

/* ---------- UI mockup gallery ---------- */
.ui-mockups {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}
.ui-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 8px 0 0;
}
.ui-mockup-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Browser-style frame (for Notion mockup) */
.ui-mockup-frame {
  position: relative;
  background: var(--bg-deep);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
}
.ui-mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Laptop-style frame (for Excel mockup) — chunky bottom edge implies a device */
.ui-mockup-frame-laptop {
  padding: 14px 14px 28px;
  background:
    linear-gradient(180deg, #2a2924 0%, #1f1e1a 100%);
}
.ui-mockup-frame-laptop img {
  border-radius: var(--r-sm);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35) inset, 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.ui-mockup-frame-laptop::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}

/* Browser-style frame (for Notion mockup) — top traffic-light bar */
.ui-mockup-frame-browser {
  padding: 0;
  background: var(--surface);
}
.ui-mockup-frame-browser img {
  border-radius: 0;
}

.ui-mockup-fig figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.ui-mockup-label {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ui-mockup-meta {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- FAQ accordion ---------- */
.product-faq {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}
.faq-list {
  max-width: var(--wrap);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item-d {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-q-d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease;
}
.faq-q-d::-webkit-details-marker { display: none; }
.faq-q-d:hover { color: var(--sage); }
.faq-q-d > span:first-child { flex: 1; line-height: 1.3; }
.faq-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}
.faq-item-d[open] .faq-chev { transform: rotate(180deg); background: var(--sage); color: var(--bg); }
.faq-a-d {
  padding: 0 4px 22px;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch;
  animation: faq-fade 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.faq-a-d strong { color: var(--ink); }
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Related products aside ---------- */
.product-related {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}
.product-related-grid {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-related-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms ease, border-color 220ms ease;
}
.product-related-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-mid);
  box-shadow: var(--sh-3);
}
.product-related-card .product-card-link { display: block; text-decoration: none; color: var(--ink); height: 100%; }
.product-related-card .product-card-cover {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line-soft);
}
.product-related-card .product-card-cover-blank {
  background:
    linear-gradient(135deg, var(--bg-deep) 0%, var(--sage-soft) 100%);
}
.product-related-card .product-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.product-related-card .product-card-title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
}
.product-related-card .product-card-desc {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-related-card .product-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px solid var(--line-soft);
}
.product-related-card .product-card-price {
  font-family: var(--mono);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.product-related-card .product-card-price-free { color: var(--ember); }
.product-related-card .product-card-cta {
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--sage);
}

/* Responsive — tablet (≤960px) */
@media (max-width: 960px) {
  .ui-mockup-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-related-grid { grid-template-columns: 1fr 1fr; }
  .product-related-grid > li:nth-child(3) { grid-column: 1 / -1; max-width: calc(50% - 10px); margin: 0 auto; }
  .ui-mockup-head { margin: 56px auto 20px; }
}

/* Responsive — mobile (≤640px) */
@media (max-width: 640px) {
  .ui-mockup-head { margin: 44px auto 16px; }
  .ui-mockup-head h3 { font-size: 1.5rem; }
  .ui-mockup-frame-laptop { padding: 8px 8px 18px; }
  .ui-mockup-frame-laptop::after { width: 50px; }
  .product-related-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-related-grid > li:nth-child(3) { max-width: none; margin: 0; }
  .faq-q-d { font-size: 1rem; padding: 18px 4px; gap: 16px; }
  .faq-chev { width: 24px; height: 24px; }
  .faq-a-d { font-size: .95rem; padding: 0 4px 20px; }
}

/* ============================================================
   Product detail v2.1 — conversion components (2026-05-28)
   Launch badge · hero direct line · dual CTA · trust strip v2 ·
   why-this · launch promise · sticky mobile CTA bar
   ============================================================ */

/* Launch-week urgency badge — sits between h1 and price */
.launch-badge {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ember);
  background: rgba(195, 74, 44, 0.06);
  border: 1px solid rgba(195, 74, 44, 0.22);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  margin: 0 0 18px;
  width: fit-content;
  max-width: 100%;
}
.launch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
  animation: launch-pulse 2.4s ease-in-out infinite;
}
@keyframes launch-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
@media (prefers-reduced-motion: reduce) {
  .launch-dot { animation: none; }
}

/* Hero direct-from-Eli line — sets the 24h human hook */
.hero-direct {
  grid-column: 1;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 14px 0 0;
  max-width: 52ch;
  padding-left: 14px;
  border-left: 2px solid var(--sage-soft);
}

/* Secondary CTA — outlined sage, partners with primary cta */
.cta-secondary {
  background: transparent !important;
  color: var(--sage) !important;
  border: 1.5px solid var(--sage);
  box-shadow: none !important;
}
.cta-secondary:hover {
  background: var(--sage) !important;
  color: var(--bg) !important;
}

/* Trust strip v2 — brand-grade 4 anchors (overrides v1 colors slightly) */
.trust-strip-v2 {
  color: var(--ink-soft);
  border-top-color: var(--line-soft);
  border-bottom-color: var(--line-soft);
}
.trust-strip-v2 span::before { background: var(--gold); opacity: .65; }

/* Why this · why now — pain to asset mapping (one line) */
.why-this {
  max-width: var(--wrap);
  margin: 40px auto 0;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--sage);
  border-radius: var(--r-md);
}
.why-this .kicker { display: block; margin-bottom: 10px; }
.why-line {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}

/* Launch promise grid — 5 conversion signals */
.launch-promise {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}
.launch-promise-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: var(--wrap-wide);
}
.launch-promise-grid li {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}
.launch-promise-grid li:hover {
  border-color: var(--sage-mid);
  box-shadow: var(--sh-2);
}
.lp-num {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.launch-promise-grid strong {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.launch-promise-grid li > span:last-child {
  font-size: .94rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Dual CTA layout inside .product-detail-cta */
.cta-dual {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cta-dual .cta { margin-bottom: 0; }

/* Sticky mobile CTA bar — visible on scroll, mobile only */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 254, 251, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(26, 24, 20, 0.06);
  padding: 12px max(env(safe-area-inset-left), 16px) max(12px, env(safe-area-inset-bottom)) max(env(safe-area-inset-right), 16px);
  display: none;
  transform: translateY(120%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-cta-bar.is-visible { transform: translateY(0); }
.sticky-cta-bar-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-cta-title {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-cta-name {
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-cta-price {
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--sage);
  letter-spacing: 0.02em;
}
.sticky-cta-btn {
  flex-shrink: 0;
  padding: 12px 20px;
  font-size: .94rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Show sticky bar on mobile + tablet, never on desktop */
@media (max-width: 960px) {
  .sticky-cta-bar { display: block; }
  /* Body padding so footer doesn't get covered when bar is up */
  body.has-sticky-cta { padding-bottom: 88px; }
}

/* Responsive — promise grid + why-this on mobile */
@media (max-width: 640px) {
  .launch-promise-grid { grid-template-columns: 1fr; gap: 12px; }
  .launch-promise-grid li { padding: 18px 18px 16px; }
  .why-this { padding: 22px 22px; margin-top: 32px; }
  .why-line { font-size: 1rem; }
  .launch-badge { font-size: .72rem; padding: 7px 12px; gap: 8px; }
  .hero-direct { font-size: .9rem; padding-left: 12px; }
  .product-detail-hero-cta { flex-direction: column; align-items: stretch; }
  .product-detail-hero-cta .cta-large { width: 100%; justify-content: center; }
  .cta-dual { flex-direction: column; }
  .cta-dual .cta-large { width: 100%; justify-content: center; }
}
