/* ==========================================================================
   The AI Edge Playbook — editorial / quiet-luxury design system
   Warm paper + ink + a bronze whisper · Fraunces display serif · Inter body
   Cinematic dark open that "develops" into light editorial as you scroll.
   ========================================================================== */
:root {
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --paper: #f3f0e8;      /* warm bone canvas */
  --paper-2: #ece7db;
  --card: #faf8f2;
  --ink: #191712;        /* warm near-black */
  --ink-2: #423d33;
  --muted: #726c5f;
  --faint: #a29b8b;
  --line: #ddd7c8;
  --line-2: #cbc4b2;

  --night: #0f1013;      /* filmic cool graphite */
  --night-2: #17181c;
  --cream: #ece7db;      /* text on night */
  --cream-2: #c9c3b4;
  --cream-faint: #8d887a;

  --accent: #7c828c;     /* pewter silver — sparing accents on paper */
  --accent-soft: #cfd4da; /* bright silver — on the dark hero */

  --maxw: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--paper); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section { padding: clamp(80px, 12vh, 160px) 0; }
.hr { border: 0; border-top: 1px solid var(--line); }

/* ── Type ── */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.display { font-family: var(--serif); font-weight: 380; line-height: 1.02; letter-spacing: -0.02em; }
.label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--muted);
}
.label .idx { color: var(--accent); margin-right: 12px; }
.lede { font-size: 1.18rem; line-height: 1.62; color: var(--muted); }
em { font-style: italic; }

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Buttons / links ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 500;
  font-size: 0.92rem; padding: 14px 26px; border-radius: 2px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper); cursor: pointer; transition: all .3s var(--ease);
  letter-spacing: 0.01em; white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn.on-dark { border-color: var(--cream); background: var(--cream); color: var(--night); }
.btn.on-dark:hover { background: transparent; color: var(--cream); }
.btn-sm { padding: 10px 18px; font-size: 0.84rem; }
.btn-block { width: 100%; justify-content: center; }

.cta {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: 1rem;
  padding-bottom: 4px; border-bottom: 1px solid currentColor; transition: gap .3s var(--ease), opacity .2s;
  letter-spacing: 0.01em;
}
.cta:hover { gap: 16px; }
.cta .arw { transition: transform .3s var(--ease); }
.cta:hover .arw { transform: translateX(4px); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  color: var(--cream); border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; letter-spacing: -0.01em; }
.brand .thin { color: currentColor; opacity: .6; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.03em; opacity: .78; transition: opacity .2s; font-weight: 500; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.cart-link { position: relative; font-size: 0.82rem; letter-spacing: 0.03em; cursor: pointer; opacity: .85; transition: opacity .2s; background: none; border: 0; color: inherit; font-family: var(--sans); font-weight: 500; }
.cart-link:hover { opacity: 1; }
.cart-count { display: none; }
.cart-link .n { font-variant-numeric: tabular-nums; }
.nav.solid { background: rgba(243, 240, 232, 0.86); backdrop-filter: saturate(150%) blur(14px); color: var(--ink); border-color: var(--line); }

/* ── Hero (the "image + a message") ── */
.hero { position: relative; min-height: 100vh; background: var(--night); color: var(--cream); overflow: hidden; display: flex; }
.hero .canvas { position: absolute; inset: 0; z-index: 0; }
.hero .glow {
  position: absolute; z-index: 0; inset: 0;
  background:
    radial-gradient(60% 55% at 68% 30%, rgba(196, 205, 218, 0.16), transparent 60%),
    radial-gradient(50% 60% at 20% 85%, rgba(150, 160, 176, 0.10), transparent 62%),
    linear-gradient(180deg, #15161b 0%, #101116 60%, #0c0d10 100%);
}
.hero .edge { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero .edge .line {
  position: absolute; top: 44%; left: -25%; width: 150%; height: 1.5px; transform: rotate(-6.5deg);
  background: linear-gradient(90deg, transparent, rgba(214,219,226,.82) 50%, transparent);
  box-shadow: 0 0 52px 9px rgba(198,206,219,.20);
}
.hero .edge .line::before { /* bright core where the blade catches the light */
  content: ''; position: absolute; top: 50%; left: 50%; width: 44%; height: 3px; transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(242,245,248,.9), transparent); filter: blur(1px);
}
.hero .edge .line::after { /* the travelling shine */
  content: ''; position: absolute; top: 50%; left: -20%; width: 16%; height: 7px; transform: translateY(-50%);
  background: radial-gradient(closest-side, rgba(255,255,255,.95), rgba(255,255,255,0) 72%);
  filter: blur(.4px); animation: shine 5.5s var(--ease) infinite;
}
@keyframes shine {
  0% { left: -20%; opacity: 0; }
  14% { opacity: 1; }
  56% { opacity: 1; }
  76%, 100% { left: 108%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero .edge .line::after { animation: none; opacity: 0; } }

/* Oversized ghost wordmark — the site's closing signature */
.megamark {
  font-family: var(--serif); font-style: italic; font-weight: 400; white-space: nowrap; text-align: center;
  line-height: .8; letter-spacing: -0.03em; font-size: clamp(1.8rem, 10.2vw, 10.5rem);
  background: linear-gradient(180deg, rgba(236,231,219,.12), rgba(236,231,219,.015));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  margin: 30px 0 -1.4vw; user-select: none; pointer-events: none;
}
.grain::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .55; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-inner { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 8vh; }
.hero .kicker { margin-bottom: 30px; }
.hero .kicker .label { color: var(--cream-2); }
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 4.9rem); line-height: 1.04; font-weight: 400; letter-spacing: -0.025em; max-width: 20ch; }
.hero h1 .em {
  font-style: italic; color: var(--accent-soft);
  background: linear-gradient(176deg, #eef1f4 0%, #c2c7ce 42%, #dfe3e8 56%, #b1b7c0 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero .sub { margin-top: 34px; max-width: 46ch; font-size: 1.12rem; color: var(--cream-2); line-height: 1.55; }
.hero .sub-cta { margin-top: 30px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.hero .scroll { position: absolute; z-index: 2; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--cream-faint); }
.hero .scroll .label { color: var(--cream-faint); font-size: 0.62rem; }
.hero .scroll .ln { width: 1px; height: 46px; background: linear-gradient(var(--cream-faint), transparent); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .3; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Dark band (interstitial statements, closing, footer) ── */
.band-dark { background: var(--night); color: var(--cream); }
.band-paper-2 { background: var(--paper-2); }

/* ── Big centered statement ── */
.statement { max-width: 20ch; margin: 0 auto; text-align: center; }
.statement.wide { max-width: 26ch; }
.statement h2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); line-height: 1.04; font-weight: 380; }
.statement p { font-family: var(--sans); margin: 28px auto 0; max-width: 52ch; color: var(--muted); font-size: 1.12rem; line-height: 1.6; }
.band-dark .statement p { color: var(--cream-2); }
.statement .after { margin-top: 40px; }

/* ── Editorial section head ── */
.head { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 64px; max-width: 900px; }
.head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.06; font-weight: 380; }
.head .lede { max-width: 56ch; }
.head .top { display: flex; align-items: center; gap: 16px; }
.head .top .rule { flex: 1; height: 1px; background: var(--line); }

/* ── Offering: editorial rows ── */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: 90px 1.1fr 1.4fr; gap: 32px; align-items: start;
  padding: 40px 0; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease);
}
.row .rnum { font-family: var(--serif); font-size: 1.5rem; color: var(--faint); }
.row h3 { font-size: 1.7rem; font-weight: 400; line-height: 1.1; }
.row p { color: var(--muted); font-size: 1.02rem; line-height: 1.55; }
.row:hover { padding-left: 10px; }

/* ── What we do: props + faded logo marquee ── */
.props { border-top: 1px solid var(--line); margin-top: 6px; }
.prop { display: grid; grid-template-columns: 0.9fr 1.5fr; gap: 40px; padding: 40px 0; border-bottom: 1px solid var(--line); align-items: start; }
.prop h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1.15; }
.prop p { color: var(--muted); font-size: 1.02rem; line-height: 1.55; }
.logostrip { padding: 30px 0 36px; border-bottom: 1px solid var(--line); }
.lg-cap { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--faint); margin-bottom: 22px; }
.logostrip-track { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.track { display: flex; align-items: center; gap: 62px; width: max-content; animation: marquee 46s linear infinite; }
.logostrip-track:hover .track { animation-play-state: paused; }
.lg { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; letter-spacing: -0.005em; color: var(--ink); opacity: .32; white-space: nowrap; transition: opacity .3s var(--ease); }
.logostrip-track:hover .lg { opacity: .55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .track { animation: none; } }
@media (max-width: 900px) { .prop { grid-template-columns: 1fr; gap: 14px; } }

/* ── Filters (editorial tabs) ── */
.tabs { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 52px; border-bottom: 1px solid var(--line); padding-bottom: 0; }
.tab {
  background: none; border: 0; font-family: var(--sans); font-size: 0.9rem; color: var(--muted); cursor: pointer;
  padding: 0 0 16px; margin-bottom: -1px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; letter-spacing: 0.01em;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-color: var(--ink); font-weight: 500; }

/* ── Catalogue: editorial pieces ── */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.piece {
  position: relative; display: flex; flex-direction: column; padding: 34px 34px 30px;
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); background: transparent;
  transition: background .35s var(--ease);
}
.piece:hover { background: var(--card); }
.piece .pcat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.piece .pbadge { position: absolute; top: 30px; right: 34px; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.piece h3 { font-size: 1.62rem; font-weight: 400; line-height: 1.12; margin: 14px 0 10px; letter-spacing: -0.015em; }
.piece .pdesc { color: var(--muted); font-size: 0.98rem; line-height: 1.5; }
.piece .pcount { margin-top: 14px; font-size: 0.76rem; letter-spacing: 0.06em; color: var(--faint); text-transform: uppercase; }
.piece ul { list-style: none; margin: 20px 0 0; display: grid; gap: 10px; }
.piece ul li { position: relative; padding-left: 20px; font-size: 0.9rem; color: var(--ink-2); line-height: 1.45; }
.piece ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--accent); }
.piece .pfoot { margin-top: auto; padding-top: 28px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.piece .pprice { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; letter-spacing: -0.02em; }
.piece .pacts { display: flex; align-items: center; gap: 18px; }
.act { background: none; border: 0; font-family: var(--sans); font-size: 0.86rem; cursor: pointer; color: var(--muted); padding: 4px 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.act:hover { color: var(--ink); border-color: var(--ink); }
.act.buy { color: var(--ink); font-weight: 500; }
.act.buy:hover { border-color: var(--ink); }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { padding: 44px 34px 44px 0; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; padding-right: 0; }
.step .snum { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); }
.step h3 { font-size: 1.3rem; font-weight: 400; margin: 18px 0 10px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ── Audience rows ── */
.aud { border-top: 1px solid var(--line); }
.aud-row { display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 40px; padding: 36px 0; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease); }
.aud-row:hover { padding-left: 10px; }
.aud-row h3 { font-size: 1.5rem; font-weight: 400; }
.aud-row p { color: var(--muted); font-size: 1.02rem; align-self: center; }

/* ── FAQ ── */
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { color: var(--faint); font-size: 1.5rem; transition: transform .25s var(--ease); font-family: var(--sans); font-weight: 300; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq p { color: var(--muted); margin-top: 16px; font-size: 1.02rem; line-height: 1.6; max-width: 68ch; }

/* ── Closing / footer (dark) ── */
.closing { text-align: center; }
.footer { padding: 80px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer .brand { font-size: 1.5rem; }
.footer .tagline { margin-top: 20px; color: var(--cream-2); max-width: 40ch; font-size: 0.98rem; line-height: 1.6; }
.footer-cities { margin-top: 26px; display: flex; align-items: center; flex-wrap: wrap; }
.footer-cities span { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-faint); }
.footer-cities span:not(:first-child) { margin-left: 18px; padding-left: 18px; border-left: 1px solid rgba(236, 231, 219, 0.16); }
.footer h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cream-faint); margin-bottom: 18px; font-weight: 600; }
.footer a { display: block; color: var(--cream-2); font-size: 0.94rem; padding: 6px 0; transition: color .2s; }
.footer a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(236,231,219,.12); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: var(--cream-faint); letter-spacing: 0.02em; }

/* ── Cart drawer ── */
.overlay { position: fixed; inset: 0; background: rgba(16,15,11,.5); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); z-index: 90; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 440px; max-width: 92vw; background: var(--paper); z-index: 100; transform: translateX(100%); transition: transform .42s var(--ease); display: flex; flex-direction: column; box-shadow: -30px 0 80px rgba(16,15,11,.18); }
.drawer.open { transform: none; }
.drawer-head { padding: 30px 34px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.drawer-head h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.drawer-close { background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 1.5rem; line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 34px; }
.cart-empty { color: var(--muted); text-align: center; padding: 70px 0; font-size: 0.98rem; }
.cart-item { display: flex; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.cart-item .ci-cat { color: var(--faint); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.cart-item .ci-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.cart-item .ci-price { font-family: var(--serif); font-size: 1.15rem; }
.cart-item .ci-remove { background: none; border: 0; color: var(--faint); cursor: pointer; font-size: 0.82rem; border-bottom: 1px solid transparent; }
.cart-item .ci-remove:hover { color: var(--ink); border-color: var(--ink); }
.drawer-foot { padding: 26px 34px 30px; border-top: 1px solid var(--line); }
.drawer-total { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--serif); font-size: 1.4rem; margin-bottom: 6px; }
.drawer-foot .note { color: var(--faint); font-size: 0.82rem; margin-bottom: 20px; }

/* ── Toast ── */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 20px); background: var(--ink); color: var(--paper); padding: 14px 26px; border-radius: 2px; font-size: 0.9rem; opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 120; letter-spacing: 0.01em; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ── Status pages ── */
.status { min-height: 70vh; display: flex; align-items: center; }
.status-inner { max-width: 640px; }
.status h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 380; line-height: 1.05; }
.status > .status-inner > p { color: var(--muted); font-size: 1.15rem; margin-top: 18px; }
.dl-list { margin: 40px 0; border-top: 1px solid var(--line); }
.dl-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.dl-item span { font-family: var(--serif); font-size: 1.2rem; }
.muted-note { color: var(--faint); font-size: 0.9rem; margin-top: 18px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .nav-links { display: none; }
  .row { grid-template-columns: 48px 1fr; }
  .row p { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 34px 0; }
  .step:last-child { border-bottom: 0; }
  .aud-row { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
}

/* ==========================================================================
   v2 additions — skills-first homepage "ways to buy" + dedicated pricing page
   ========================================================================== */

/* ── Compact hero (pricing / sub-pages) ── */
.hero-compact { min-height: 62vh; }
.hero-compact .hero-inner { padding-bottom: 7vh; }
.hero-compact h1 { font-size: clamp(2rem, 5vw, 4rem); }

/* ── Nav outline button — adapts to dark/solid nav via currentColor ── */
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.02em; padding: 9px 18px; border-radius: 2px;
  border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav.solid .btn-nav:hover { background: var(--ink); color: var(--paper); }
.nav:not(.solid) .btn-nav:hover { background: var(--cream); color: var(--night); }

/* ── Ways to buy (homepage) ── */
.ways { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.way { display: flex; flex-direction: column; gap: 16px; padding: 46px 42px 40px; background: transparent; transition: background .35s var(--ease); }
.way:first-child { border-right: 1px solid var(--line); }
.way:hover { background: var(--card); }
.way h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.06; letter-spacing: -0.015em; }
.way p { color: var(--muted); font-size: 1.02rem; line-height: 1.55; max-width: 44ch; }
.way .cta { margin-top: auto; padding-top: 12px; align-self: flex-start; }
.way .label .idx { color: var(--accent); }
@media (max-width: 760px) { .ways { grid-template-columns: 1fr; } .way:first-child { border-right: 0; border-bottom: 1px solid var(--line); } }

/* ── Pricing toggle (By role / By skill set) ── */
.pricing-switch { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; margin-bottom: 60px; }
.toggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: 3px; padding: 4px; background: var(--card); }
.seg {
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em; cursor: pointer;
  border: 0; background: transparent; color: var(--muted); padding: 11px 30px; border-radius: 2px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.seg:hover { color: var(--ink); }
.seg.active { background: var(--ink); color: var(--paper); }
.toggle-note { max-width: 58ch; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }

/* ── Reassurance strip (pricing) ── */
.assure { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.assure-item { padding: 44px 34px 44px 0; border-right: 1px solid var(--line); }
.assure-item:last-child { border-right: 0; padding-right: 0; }
.assure-item .snum { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); }
.assure-item h3 { font-size: 1.3rem; font-weight: 400; margin: 18px 0 10px; }
.assure-item p { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 760px) {
  .assure { grid-template-columns: 1fr; }
  .assure-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 30px 0; }
  .assure-item:last-child { border-bottom: 0; }
}
