/* ============================================================
   components.css — role tokens, nav, hero  (warm & soft)
   ============================================================ */

/* ---------------- Role token ---------------- */
.roletoken {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px 8px 11px;
  border: 1.5px solid var(--line-firm); border-radius: var(--r-pill);
  background: var(--paper-2); color: var(--ink);
  font-family: var(--label); font-weight: 700; line-height: 1;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .25s var(--ease), box-shadow .25s;
  user-select: none;
}
.roletoken__glyph { display: inline-flex; }
.roletoken__short { font-size: 12.5px; letter-spacing: .03em; }
.roletoken__label { display: none; }
.roletoken.big { padding: 13px 19px 13px 15px; gap: 13px; border-radius: var(--r-md); }
.roletoken.big .roletoken__txt { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.roletoken.big .roletoken__short { font-size: 11px; color: var(--ink-faint); letter-spacing: .1em; }
.roletoken.big .roletoken__label { display: block; font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }

.roletoken.is-on   { background: var(--sage); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.roletoken.is-on .roletoken__short { color: rgba(255,255,255,.88); }
.roletoken.is-on .roletoken__label { color: #fff; }
.roletoken.is-gap  { background: var(--amber-tint); border-style: dashed; border-color: var(--amber); color: var(--amber-deep); }
.roletoken.is-gap .roletoken__short { color: var(--amber-deep); }
.roletoken.is-dim  { opacity: .42; }
.roletoken.clickable { cursor: pointer; }
.roletoken.clickable:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.roletoken.big.is-on { box-shadow: var(--shadow-soft); }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--cream) 84%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; letter-spacing: -.02em; font-size: 20px; white-space: nowrap; }
.brand__logo { height: 40px; width: auto; display: block; flex: 0 0 auto; }
.brand__word { color: var(--ink); }
@media (max-width: 460px) { .brand__word { display: none; } }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: var(--navy); color: var(--honey);
  font-family: var(--display); font-weight: 800; font-size: 12.5px; letter-spacing: -.02em;
  box-shadow: var(--shadow-sm);
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
@media (max-width: 880px) { .nav__links .navlink { display: none; } }

/* ---------------- Hero ---------------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 100px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 48px; } }

.hero__kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .ln { display: block; }
.hero h1 .sage { color: var(--sage-deep); }
.hero h1 .strike { position: relative; color: var(--ink-faint); }
.hero h1 .strike::after { content:""; position:absolute; left:-2%; right:-2%; top:54%; height:6px; border-radius:3px; background: var(--clay); transform: rotate(-1.4deg); }
.hero__sub { max-width: 540px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__meta { margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-family: var(--label); font-size: 13.5px; color: var(--ink-faint); }
.hero__meta b { color: var(--ink); font-weight: 700; }
.hero__meta .sep { width: 5px; height: 5px; background: var(--sage); border-radius: 50%; }

/* ---- Pod-assembly stage ---- */
.podstage { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 480px; margin-inline: auto; }
.podstage__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.podstage__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 35%; aspect-ratio: 1; border-radius: 50%;
  background: var(--ink); color: var(--paper-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 0 0 0 8px var(--cream), 0 0 0 9px var(--line-soft), var(--shadow-lift);
  z-index: 3; text-align: center;
}
.podstage__hub .you { font-family: var(--display); font-weight: 800; font-size: clamp(20px, 4.6vw, 30px); letter-spacing: -.02em; line-height: 1; }
.podstage__hub .tag { font-family: var(--label); font-size: 10.5px; letter-spacing: .08em; color: var(--honey); text-transform: uppercase; font-weight: 700; }
.podnode {
  position: absolute; transform: translate(-50%,-50%);
  z-index: 2; transition: transform .5s var(--ease);
}
.podnode .roletoken { transform: scale(.82); transform-origin: center; }
.podstage__caption { position:absolute; left:0; right:0; bottom:-2px; text-align:center; font-family:var(--label); font-size:13px; color:var(--ink-faint); letter-spacing:.01em; font-weight:600; }

.podline { stroke: var(--line-firm); stroke-width: 1.5; transition: stroke .5s, stroke-dashoffset 1s var(--ease); }
.podline.on { stroke: var(--sage); }
.podline.gap { stroke: var(--amber); stroke-dasharray: 4 5; opacity:.7; }

/* floating tag stickers (soft) */
.sticker {
  position: absolute; font-family: var(--label); font-size: 12px; font-weight: 700;
  letter-spacing: .01em; padding: 7px 12px; background: var(--paper-2);
  border-radius: var(--r-pill); color: var(--ink);
  box-shadow: var(--shadow-soft); z-index: 4;
}

/* ---------------- Generic section spacing ---------------- */
.pad { padding-block: clamp(64px, 9vw, 130px); }
.pad-sm { padding-block: clamp(44px, 6vw, 80px); }
