/* =====================================================================
   v4 — FRESH (revised)
   Off-white canvas. ONE primary (violet) + ONE accent (mint).
   Subtle gradients only. Hand-drawn accents.
   ===================================================================== */

:root {
  /* canvas */
  --cream: #F2F1FF;
  --cream-2: #E7E5FA;
  --ink: #14140E;
  --ink-90: rgba(20,20,14,0.92);
  --ink-70: rgba(20,20,14,0.66);
  --ink-50: rgba(20,20,14,0.50);
  --ink-35: rgba(20,20,14,0.35);
  --ink-15: rgba(20,20,14,0.15);
  --ink-08: rgba(20,20,14,0.08);

  /* PALETTE — two colours only.
     Violet is the SUNCHI primary; mint is the single counterweight. */
  --violet:      #6B33FF;
  --violet-soft: #8B5FFF;
  --violet-tint: #E5DDFF;     /* very pale wash */

  --mint:        #A5F6D2;     /* the only green — graphical accent (fills, dots, glows) */
  --mint-deep:   #A5F6D2;     /* deprecated: kept = mint so no stray emerald appears */
  --mint-tint:   #DCF8EB;

  /* dark slab (for the PRECISION moment) */
  --slab:        #0B0B07;

  /* themeable surfaces */
  --surface:     #ECEAFF;                 /* cards / widgets */
  --surface-2:   rgba(255,255,255,0.72);  /* media wells inside cards */
  --nav-bg:      rgba(242,241,255,0.72);
  --on-slab:     #F2F1FF;                 /* fixed light text on the dark precision band */
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nudista", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

::selection { background: var(--violet); color: var(--cream); }

/* ============== HAND-DRAWN UTILITIES ============== */
/* "Circled" — a hand-sketched oval drawn around inline text via inline SVG */
.circled {
  position: relative;
  display: inline-block;
  padding: 0.02em 0.1em;
  z-index: 0;
}
.circled::before {
  content: "";
  position: absolute;
  inset: -0.1em -0.22em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 90' preserveAspectRatio='none'><path d='M 16 50 C 8 16, 60 8, 110 8 C 175 8, 212 18, 212 50 C 212 80, 160 86, 100 84 C 38 82, 10 76, 14 50 C 16 36, 22 32, 30 36' fill='none' stroke='%236B33FF' stroke-width='2.4' stroke-linecap='round'/></svg>");
}
.circled--mint::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 90' preserveAspectRatio='none'><path d='M 14 48 C 10 14, 65 10, 115 10 C 178 10, 210 22, 208 52 C 206 80, 152 86, 95 82 C 36 78, 12 70, 16 46 C 18 34, 26 28, 36 32' fill='none' stroke='%23A5F6D2' stroke-width='2.4' stroke-linecap='round'/></svg>");
}

/* Wavy hand-drawn underline */
.wavy {
  position: relative;
  display: inline-block;
}
.wavy::after {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em;
  bottom: -0.18em; height: 0.36em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'><path d='M 3 10 C 12 2, 26 12, 40 6 C 56 0, 70 12, 86 6 C 100 2, 110 10, 117 6' fill='none' stroke='%23A5F6D2' stroke-width='2.2' stroke-linecap='round'/></svg>");
}
.wavy--violet::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'><path d='M 3 10 C 12 2, 26 12, 40 6 C 56 0, 70 12, 86 6 C 100 2, 110 10, 117 6' fill='none' stroke='%236B33FF' stroke-width='2.2' stroke-linecap='round'/></svg>");
}

/* Tiny hand-drawn accent — sparkle / asterisk doodle inline */
.doodle {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: -0.1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M 12 3 C 11 9, 9 11, 3 12 C 9 13, 11 15, 12 21 C 13 15, 15 13, 21 12 C 15 11, 13 9, 12 3 Z' fill='%236B33FF' opacity='0.9'/></svg>");
}

/* ============== AURORA WASH (hero) ============== */
.fresh-aurora {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.fresh-aurora::before,
.fresh-aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.fresh-aurora::before {
  width: 720px; height: 720px;
  background: radial-gradient(circle, var(--violet-tint) 0%, transparent 60%);
  top: -260px; right: -220px;
  opacity: 0.95;
}
.fresh-aurora::after {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--mint-tint) 0%, transparent 60%);
  bottom: -180px; left: -140px;
  opacity: 0.75;
}

/* ============== TOP NAV ============== */
.fresh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--ink-08);
}
.fresh-nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
}
.fresh-nav__disc {
  width: 28px; height: 28px; border-radius: 9999px;
  background: var(--ink) center/cover no-repeat;
  background-image: url("assets/avatar-circle.png");
}
.fresh-nav__handle {
  color: var(--ink-50);
  font-weight: 400;
  font-size: 13px;
}
.fresh-nav__links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-70);
}
.fresh-nav__links a {
  position: relative;
  transition: color 200ms ease;
}
.fresh-nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--violet);
  transform: scaleX(0); transform-origin: left;
  transition: transform 240ms cubic-bezier(0.22,0.61,0.36,1);
}
.fresh-nav__links a:hover { color: var(--ink); }
.fresh-nav__links a:hover::after { transform: scaleX(1); }
.fresh-nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 200ms ease, background 200ms ease;
}
.fresh-nav__cta:hover { transform: translateY(-1px); background: var(--violet); }
.fresh-nav__cta .dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============== SECTION LABEL ============== */
.fresh-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.fresh-label .dot {
  width: 8px; height: 8px; border-radius: 9999px;
  background: var(--violet);
}
.fresh-label--mint .dot   { background: var(--mint); }
.fresh-label--violet .dot { background: var(--violet);    }
/* legacy aliases — both map to the two-colour palette */
.fresh-label--gold .dot   { background: var(--violet);    }
.fresh-label--coral .dot  { background: var(--mint); }
.fresh-label--purple .dot { background: var(--violet);    }

/* ============== HERO ============== */
.fresh-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.fresh-hero__inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  width: 100%;
  align-self: center;
  display: grid; gap: 48px;
}
.fresh-hero__label {
  margin-bottom: -8px;
}
.fresh-hero__name {
  font-weight: 300;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 14ch;
}
/* Subtle violet→mint gradient on a single accent word */
.fresh-hero__name .grad {
  background: linear-gradient(96deg, var(--violet) 10%, var(--violet-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fresh-hero__tagline {
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink-90);
  max-width: 26ch;
  margin: 0;
}
/* legacy class names all collapse to the two-colour system */
.fresh-hero__tagline em       { font-style: normal; color: var(--violet); font-weight: 400; }
.fresh-hero__tagline .violet,
.fresh-hero__tagline .purple,
.fresh-hero__tagline .gold    { color: var(--violet); font-weight: 400; }
.fresh-hero__tagline .mint,
.fresh-hero__tagline .coral   { color: var(--violet); font-weight: 400; }

.fresh-hero__meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-50);
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  width: 100%;
}
.fresh-hero__meta b { color: var(--ink); font-weight: 500; }
.fresh-hero__meta .sep { color: var(--ink-15); }

/* ============== SIGNAL ============== */
.fresh-signal {
  position: relative;
  padding: 120px 32px;
  max-width: 1320px; margin: 0 auto;
}
.fresh-signal__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.fresh-signal__label-col {
  position: sticky; top: 120px;
}
.fresh-signal__text {
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0;
  color: var(--ink-90);
}
.fresh-signal__text b           { font-weight: 500; color: var(--ink); }
.fresh-signal__text .violet,
.fresh-signal__text .purple,
.fresh-signal__text .gold       { color: var(--violet); font-weight: 400; }
.fresh-signal__text .mint,
.fresh-signal__text .coral      { color: var(--violet); font-weight: 400; }
.fresh-signal__text .num        { color: var(--ink); font-weight: 500; }

/* ============== SOURCE ============== */
.fresh-source {
  position: relative;
  padding: 120px 32px;
  max-width: 1320px; margin: 0 auto;
  text-align: center;
}
.fresh-source__head {
  display: grid; gap: 28px; justify-items: center;
  margin-bottom: 56px;
}
.fresh-source__title {
  font-weight: 300;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.fresh-source__title .grad {
  /* Only the hero name uses the gradient. Section accents stay solid violet. */
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--violet);
}
.fresh-source__lede {
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 36ch;
  margin: 0;
}

.fresh-constellation {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.fresh-constellation svg {
  width: 100%; height: 100%;
  display: block;
  overflow: visible;
}
/* Hand-drawn center circle */
.fresh-constellation__handcircle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.85;
  transform-origin: 300px 300px;
  animation: handBreathe 9s ease-in-out infinite;
}
.fresh-constellation__handcircle--inner {
  stroke: var(--violet);
  opacity: 0.55;
  animation-delay: -3s;
  animation-duration: 11s;
}
@keyframes handBreathe {
  0%, 100% { transform: scale(1) rotate(-0.3deg); }
  50%      { transform: scale(1.015) rotate(0.4deg); }
}

/* interactive centre hub */
.fresh-constellation__hub { cursor: pointer; }
.fresh-constellation__hub:focus { outline: none; }
.fresh-constellation__hub .hit { fill: transparent; }
.fresh-constellation__handcircle { transition: stroke-width 400ms ease, opacity 400ms ease; }
.fresh-constellation.is-active .fresh-constellation__handcircle {
  opacity: 1;
  stroke-width: 2.6;
}
.fresh-constellation.is-active .fresh-constellation__handcircle--inner { opacity: 0.85; }
.fresh-constellation.is-active .fresh-constellation__node circle.halo { opacity: 0.14; }
.fresh-constellation.is-active .fresh-constellation__node circle.body { filter: drop-shadow(0 0 10px currentColor); }
.fresh-constellation.is-active .fresh-constellation__ring {
  stroke: var(--violet);
  opacity: 0.85;
  stroke-width: 2;
}
.fresh-constellation.is-active .fresh-constellation__ring--ghost { stroke: var(--mint); opacity: 0.5; }

/* hand-drawn orbit ring */
.fresh-constellation__orbit {
  transform-origin: 300px 300px;
}
.fresh-constellation__ring {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.45;
  transition: stroke 400ms ease, opacity 400ms ease, stroke-width 400ms ease;
}
.fresh-constellation__ring--ghost {
  stroke: var(--violet);
  stroke-width: 1.1;
  opacity: 0.26;
}

.fresh-constellation__node {
  cursor: pointer;
  transition: transform 320ms cubic-bezier(0.22,0.61,0.36,1);
  transform-origin: center;
}
.fresh-constellation__node circle.body {
  transition: r 320ms cubic-bezier(0.22,0.61,0.36,1), filter 320ms ease;
}
.fresh-constellation__node circle.halo {
  fill: none;
  opacity: 0;
  transition: opacity 320ms ease, r 320ms ease;
}
.fresh-constellation__node:hover circle.body {
  filter: drop-shadow(0 0 14px currentColor);
}
.fresh-constellation__node:hover circle.halo {
  opacity: 0.14;
}
.fresh-constellation__node text {
  font-family: "Nudista", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  fill: var(--ink);
  text-anchor: middle;
  letter-spacing: -0.005em;
}
.fresh-constellation__node text.sub {
  font-size: 11px;
  font-weight: 400;
  fill: var(--ink-50);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
/* alternating two-colour node tints */
.fresh-constellation__node--violet { color: var(--violet); }
.fresh-constellation__node--mint   { color: var(--mint); }
/* legacy class mappings */
.fresh-constellation__node--purple { color: var(--violet); }
.fresh-constellation__node--gold   { color: var(--violet); }
.fresh-constellation__node--coral  { color: var(--mint); }

.fresh-source__foot {
  margin-top: 64px;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 30ch;
  margin-left: auto; margin-right: auto;
}
.fresh-source__foot em {
  font-style: normal;
  color: var(--violet);
  font-weight: 500;
}

/* ============== LATEST — track card ============== */
.fresh-latest {
  position: relative;
  padding: 60px 32px 120px;
  max-width: 1320px; margin: 0 auto;
}
.fresh-latest__head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.fresh-latest__title {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
}
.fresh-latest__date {
  font-size: 13px;
  color: var(--ink-50);
  display: flex; align-items: center; gap: 10px;
}
.fresh-latest__date .live-dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--violet);
  animation: pulse 2.4s ease-in-out infinite;
}

.fresh-track {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--ink-08);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(20,20,14,0.05);
  overflow: hidden;
}
.fresh-track__cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, var(--mint) 0%, transparent 60%),
    radial-gradient(circle at 75% 65%, var(--violet) 0%, transparent 60%),
    var(--ink);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.fresh-track__cover-text {
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 0.9;
  text-align: center;
  z-index: 1;
}
.fresh-track__cover-text em {
  display: block;
  font-style: normal;
  font-weight: 300;
  color: var(--mint-tint);
}
.fresh-track__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}
.fresh-track__artist {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-70);
  display: flex; align-items: center; gap: 8px;
}
.fresh-track__artist .badge {
  padding: 4px 8px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 9999px;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.fresh-track__name {
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
}
.fresh-track__name em {
  font-style: normal;
  font-weight: 400;
  color: var(--violet);
}
.fresh-track__controls {
  display: flex; align-items: center; gap: 16px;
}
.fresh-track__play {
  width: 56px; height: 56px;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}
.fresh-track__play:hover { background: var(--violet); transform: scale(1.05); }
.fresh-track__play::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 4px;
}
.fresh-track__wave {
  flex: 1;
  display: flex; align-items: center; gap: 3px;
  height: 32px;
}
.fresh-track__wave span {
  flex: 1;
  background: var(--violet);
  border-radius: 2px;
  animation: waveBar 1.6s ease-in-out infinite;
  opacity: 0.6;
  transform-origin: bottom;
}
.fresh-track__wave span:nth-child(1) { height: 30%; animation-delay: 0.0s; }
.fresh-track__wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.fresh-track__wave span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.fresh-track__wave span:nth-child(4) { height: 55%; animation-delay: 0.3s; }
.fresh-track__wave span:nth-child(5) { height: 80%; animation-delay: 0.4s; }
.fresh-track__wave span:nth-child(6) { height: 40%; animation-delay: 0.5s; }
.fresh-track__wave span:nth-child(7) { height: 65%; animation-delay: 0.6s; }
.fresh-track__wave span:nth-child(8) { height: 35%; animation-delay: 0.7s; }
.fresh-track__wave span:nth-child(9) { height: 70%; animation-delay: 0.8s; }
.fresh-track__wave span:nth-child(10){ height: 50%; animation-delay: 0.9s; }
.fresh-track__wave span:nth-child(11){ height: 85%; animation-delay: 1.0s; }
.fresh-track__wave span:nth-child(12){ height: 45%; animation-delay: 1.1s; }
.fresh-track__wave span:nth-child(13){ height: 60%; animation-delay: 1.2s; }
.fresh-track__wave span:nth-child(14){ height: 75%; animation-delay: 1.3s; }
.fresh-track__wave span:nth-child(15){ height: 30%; animation-delay: 1.4s; }
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50%      { transform: scaleY(1.1); opacity: 0.95; }
}
.fresh-track__time {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-50);
  font-variant-numeric: tabular-nums;
}
.fresh-track__links {
  display: flex; gap: 12px;
  font-size: 13px;
}
.fresh-track__link {
  padding: 10px 16px;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 200ms ease, background 200ms ease;
  white-space: nowrap;
}
.fresh-track__link:hover { background: var(--violet); transform: translateY(-1px); }
.fresh-track__link--alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-15);
}
.fresh-track__link--alt:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ============== CURRENTLY ============== */
.fresh-currently {
  position: relative;
  padding: 100px 32px;
  max-width: 1320px; margin: 0 auto;
}
.fresh-currently__head {
  margin-bottom: 48px;
  display: grid; gap: 16px;
}
.fresh-currently__title {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 14ch;
}
.fresh-currently__title .grad {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--violet);
}
.fresh-currently__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fresh-now {
  position: relative;
  padding: 32px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--ink-08);
  border-radius: 20px;
  display: grid; gap: 16px;
  min-height: 220px;
  transition: transform 320ms ease, box-shadow 320ms ease;
}
.fresh-now:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(20,20,14,0.08);
}
.fresh-now__icon {
  width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 600;
}
.fresh-now--mint   .fresh-now__icon { background: var(--mint-tint);   color: var(--mint); }
.fresh-now--violet .fresh-now__icon { background: var(--violet-tint); color: var(--violet);    }
/* legacy mappings */
.fresh-now--gold   .fresh-now__icon { background: var(--violet-tint); color: var(--violet);    }
.fresh-now--purple .fresh-now__icon { background: var(--violet-tint); color: var(--violet);    }
.fresh-now--coral  .fresh-now__icon { background: var(--mint-tint);   color: var(--mint); }
.fresh-now__key {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.fresh-now__val {
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.fresh-now__val em {
  font-style: normal;
  font-weight: 500;
}
.fresh-now--mint   .fresh-now__val em,
.fresh-now--coral  .fresh-now__val em  { color: var(--violet); }
.fresh-now--violet .fresh-now__val em,
.fresh-now--gold   .fresh-now__val em,
.fresh-now--purple .fresh-now__val em  { color: var(--violet); }

/* ============== CONNECT ============== */
.fresh-connect {
  position: relative;
  padding: 100px 32px 80px;
  max-width: 1320px; margin: 0 auto;
}
.fresh-connect__head {
  display: grid; gap: 18px;
  margin-bottom: 48px;
}
.fresh-connect__title {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 14ch;
}
.fresh-connect__title .grad {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--violet);
}

.fresh-connect__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.fresh-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--ink-08);
  border-radius: 16px;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.fresh-link:hover {
  transform: translateY(-2px);
  border-color: var(--ink-15);
}
.fresh-link__pip {
  width: 12px; height: 12px; border-radius: 9999px;
}
.fresh-link--mint .fresh-link__pip,
.fresh-link--coral .fresh-link__pip  { background: var(--mint); }
.fresh-link--violet .fresh-link__pip,
.fresh-link--purple .fresh-link__pip,
.fresh-link--gold .fresh-link__pip   { background: var(--violet); }
.fresh-link__main { display: grid; gap: 2px; }
.fresh-link__key {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.fresh-link__val {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.fresh-link__arr {
  font-size: 16px;
  color: var(--ink-35);
  transition: transform 200ms ease, color 200ms ease;
}
.fresh-link:hover .fresh-link__arr { transform: translate(4px, -4px); color: var(--ink); }

/* ============== FOOTER ============== */
.fresh-footer {
  border-top: 1px solid var(--ink-08);
  padding: 36px 32px 28px;
  max-width: 1320px; margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-50);
}
.fresh-footer__brand {
  display: flex; align-items: center; gap: 12px;
}
.fresh-footer__disc {
  width: 32px; height: 32px; border-radius: 9999px;
  background: var(--ink) center/cover no-repeat;
  background-image: url("assets/avatar-circle.png");
}
.fresh-footer__name { font-size: 13px; font-weight: 500; color: var(--ink); }
.fresh-footer__handle { font-size: 12px; color: var(--ink-50); }
.fresh-footer__mid { text-align: center; }
.fresh-footer__end { justify-self: end; display: flex; gap: 18px; }
.fresh-footer__end a:hover { color: var(--ink); }

/* ============== RESPONSIVE ============== */
/* === v2 — additions === */

/* BREATHE — hero takeover */
.fresh-hero__name--breathe {
  font-size: clamp(110px, 22vw, 320px);
  letter-spacing: -0.055em;
  line-height: 0.86;
  max-width: none;
  display: block;
}
.breathe-word {
  display: inline-block;
  background: linear-gradient(96deg, var(--violet) 0%, var(--violet-soft) 45%, var(--mint) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: breatheScale 6.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  transform-origin: left center;
}
.breathe-word .period {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}
@keyframes breatheScale {
  0%, 100% { transform: scale(1); letter-spacing: -0.055em; }
  50%      { transform: scale(1.012); letter-spacing: -0.048em; }
}

/* WHO — a clean editorial statement block */
.fresh-who__body {
  display: grid;
  gap: 22px;
  max-width: 48ch;
}
.fresh-who__body .fresh-signal__text {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.32;
  max-width: none;
  margin: 0 0 4px;
}
.fresh-who__sub {
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--ink-90);
  margin: 0;
}
.fresh-who__sub--key {
  font-size: clamp(20px, 1.7vw, 26px);
  color: var(--ink-90);
  font-weight: 400;
}
.fresh-who__sub b { color: var(--ink); font-weight: 500; }
.fresh-who__sub .mint, .fresh-who__sub .violet {
  font-weight: 400;
}
.fresh-who__sub .mint   { color: var(--violet); }
.fresh-who__sub .violet { color: var(--violet); }

/* PRECISION — dark slab moment */
.fresh-precision {
  position: relative;
  background: var(--slab);
  color: var(--on-slab);
  padding: 200px 32px;
  margin: 80px 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.fresh-precision::before {
  /* subtle warm glow on the right, fresh-mint glow on the left */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 12% 50%, rgba(63,224,168,0.10) 0%, transparent 60%),
    radial-gradient(60% 80% at 88% 50%, rgba(107,51,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.fresh-precision::after {
  /* film grain */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
  mix-blend-mode: overlay;
}
.fresh-precision__inner {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: clamp(8px, 1.4vw, 24px);
  z-index: 1;
}
.fresh-precision__word {
  font-weight: 300;
  font-size: clamp(80px, 16vw, 240px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}
.fresh-precision__bracket {
  font-weight: 300;
  font-size: clamp(70px, 14vw, 200px);
  line-height: 0.9;
  color: var(--mint);
  opacity: 0.9;
  letter-spacing: 0;
  font-feature-settings: "ss01" on;
}
.fresh-precision__bracket--l { color: var(--mint); }
.fresh-precision__bracket--r { color: var(--violet-soft); }
.fresh-precision__caption {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(242,241,255,0.42);
  font-weight: 300;
}

/* CIRCLE — who I enjoy being with */
.fresh-circle {
  position: relative;
  padding: 120px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.fresh-circle__head {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 22ch;
}
.fresh-circle__title {
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.fresh-circle__title .grad {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--violet);
  font-style: normal;
  font-weight: 300;
}
.fresh-circle__body {
  display: grid;
  gap: 40px;
  max-width: 52ch;
}
.fresh-circle__lead {
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink-90);
  margin: 0;
}
.fresh-circle__lead em { font-style: italic; color: var(--ink); font-weight: 400; }
.fresh-circle__lead .mint { color: var(--violet); font-weight: 400; }
.fresh-circle__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.fresh-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--ink-15);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--surface-2);
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}
.fresh-chip:hover { border-color: var(--violet); color: var(--violet); }
.fresh-chip-sep { color: var(--ink-15); font-weight: 300; }
.fresh-circle__closer {
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink-70);
}
.fresh-circle__closer .violet { color: var(--violet); font-weight: 400; }

/* PATH — timeline */
.fresh-path {
  position: relative;
  padding: 100px 32px;
  margin: 0;
  max-width: none;
  background: #0C0B14;
  /* scoped light palette — flips all Path text to light on the dark band */
  --ink: #F2F1FF;
  --ink-90: rgba(242,241,255,0.92);
  --ink-70: rgba(242,241,255,0.66);
  --ink-50: rgba(242,241,255,0.52);
  --ink-35: rgba(242,241,255,0.34);
  --ink-15: rgba(242,241,255,0.18);
  --ink-08: rgba(242,241,255,0.10);
  --violet: #A98BFF;
}
.fresh-path .fresh-signal__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.fresh-path__head {
  display: grid;
  gap: 18px;
  margin-bottom: 64px;
  max-width: 22ch;
}
.fresh-path__title {
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.fresh-path__title .grad {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--violet);
}
.fresh-path__lede {
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-70);
  margin: 0;
}
.fresh-path__lede em { font-style: italic; color: var(--ink); font-weight: 400; }

.fresh-path__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
  border-top: 1px solid var(--ink-08);
  max-width: 880px;
}
.fresh-path__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-08);
  position: relative;
  transition: padding-left 240ms ease;
}
.fresh-path__item:hover { padding-left: 8px; }
.fresh-path__bullet {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: var(--ink-15);
  margin-top: 14px;
  position: relative;
  transition: background 240ms ease, transform 240ms ease;
}
.fresh-path__item .fresh-path__bullet { background: var(--ink-15); }
.fresh-path__item:hover .fresh-path__bullet { transform: scale(1.4); background: var(--violet); }
.fresh-path__entry {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 32px;
  align-items: baseline;
}
.fresh-path__key {
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.fresh-path__key .mint   { color: var(--violet); font-weight: 500; }
.fresh-path__key .violet { color: var(--violet); font-weight: 500; }
.fresh-path__key .accent { color: var(--ink); font-weight: 500; }
.fresh-path__val {
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-70);
}

/* FIELD NOTES — empty-ready */
.fresh-field {
  position: relative;
  padding: 60px 32px 120px;
  max-width: 1320px;
  margin: 0 auto;
}
.fresh-field__head {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
  max-width: 22ch;
}
.fresh-field__title {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.fresh-field__title .grad {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--violet);
  font-style: normal;
}
/* NEWS — live feed */
.fresh-field__sub {
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--ink-70);
  margin: 16px 0 0;
  max-width: 44ch;
}
.fresh-field__wrap {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
}
.fresh-field__wrap .fresh-label { margin-bottom: 18px; }
.fresh-field__wrap .fresh-field__title { margin: 0 0 30px; text-align: center; }
.fresh-field__wrap .fresh-feed { width: 100%; margin-top: 0; }
.fresh-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.feed-card {
  display: grid;
  gap: 12px;
  align-content: start;
  background: var(--surface);
  border: 1px solid var(--ink-08);
  border-radius: 14px;
  padding: 14px;
}
.feed-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-card__src {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feed-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.feed-card__flag .live-dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}
.feed-embed {
  position: relative;
  height: 352px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2);
}
.feed-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feed-embed__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 0 18px;
  text-align: center;
  pointer-events: none;
}
.feed-embed__glyph {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--ink-15);
  border-radius: 9999px;
  color: var(--ink-50);
  font-size: 12px;
}
.feed-embed__poster b {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-70);
}
.feed-embed__hint {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-35);
}
.feed-card__embed {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  display: block;
  background: transparent;
}
.feed-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 352px;
  overflow: hidden;
}
.feed-card__grid image-slot {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px dashed var(--ink-15);
}
.feed-card__grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--ink-08);
}
.feed-card__cta {
  font-size: 13px;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 160ms ease;
}
.feed-card__cta:hover { opacity: 0.55; }

@media (max-width: 900px) {
  .fresh-feed { grid-template-columns: 1fr; max-width: 460px; }
}

.fresh-field__card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.5)),
    var(--cream-2);
  border: 1px dashed var(--ink-15);
  border-radius: 20px;
  padding: 44px 44px 56px;
  max-width: 720px;
  overflow: hidden;
}
.fresh-field__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
  margin-bottom: 28px;
}
.fresh-field__date {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.24em;
  color: var(--ink-35);
}
.fresh-field__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fresh-field__live .live-dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}
.fresh-field__placeholder {
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink-70);
  margin: 0 0 32px;
  font-style: italic;
  max-width: 32ch;
}
.fresh-field__lines {
  display: grid;
  gap: 14px;
}
.fresh-field__lines span {
  display: block;
  height: 1px;
  background: var(--ink-08);
}
.fresh-field__lines span:nth-child(1) { width: 92%; }
.fresh-field__lines span:nth-child(2) { width: 78%; }
.fresh-field__lines span:nth-child(3) { width: 54%; }

/* THRESHOLD OUT */
.fresh-out {
  position: relative;
  padding: 120px 32px 60px;
  max-width: 1320px;
  margin: 0 auto;
}
.fresh-out__inner {
  display: grid;
  gap: 40px;
  justify-items: center;
  text-align: center;
}
.fresh-out__title {
  font-weight: 300;
  font-size: clamp(40px, 5.8vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 18ch;
}
.fresh-out__title .grad {
  background: linear-gradient(96deg, var(--violet) 0%, var(--violet-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
}
.fresh-out__rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-top: 1px solid var(--ink-08);
  border-left: 1px solid var(--ink-08);
  max-width: 880px;
  text-align: left;
}
.fresh-room {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 28px 28px;
  border-right: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
  transition: background 220ms ease, color 220ms ease;
  background: var(--surface);
}
.fresh-room__key {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.fresh-room__val {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.fresh-room__arr {
  font-size: 18px;
  color: var(--ink-35);
  transition: transform 220ms ease, color 220ms ease;
}
.fresh-room:hover .fresh-room__arr { transform: translate(4px, -4px); color: inherit; }
.fresh-room--violet:hover { background: var(--violet); color: var(--cream); }
.fresh-room--violet:hover .fresh-room__key,
.fresh-room--violet:hover .fresh-room__val { color: var(--cream); }
.fresh-room--mint:hover { background: var(--mint); color: var(--ink); }
.fresh-room--mint:hover .fresh-room__key,
.fresh-room--mint:hover .fresh-room__val { color: var(--ink); }

.fresh-out__sig {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.fresh-out__t {
  font-weight: 300;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-style: italic;
}

/* v2 — ALIGNED SECTIONS (Circle / Path / Field match the Who layout) */
.fresh-aligned .fresh-signal__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.fresh-aligned .fresh-signal__label-col { position: sticky; top: 120px; }

.fresh-circle__body { display: grid; gap: 36px; max-width: 52ch; }
.fresh-path__body   { display: grid; gap: 18px; }
.fresh-field__body  { display: grid; gap: 36px; }

.fresh-circle__body .fresh-circle__title,
.fresh-path__body .fresh-path__title,
.fresh-field__body .fresh-field__title { margin: 0; max-width: none; }

.fresh-path__body .fresh-path__lede { margin: 0; }
.fresh-path__body .fresh-path__list { margin-top: 24px; max-width: 760px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .fresh-nav { padding: 14px 18px; }
  .fresh-nav__links { display: none; }
  .fresh-hero { padding: 110px 18px 56px; }
  .fresh-signal { padding: 56px 18px; }
  .fresh-signal__inner { grid-template-columns: 1fr; gap: 20px; }
  .fresh-signal__label-col { position: static; }
  .fresh-source, .fresh-latest, .fresh-currently, .fresh-connect { padding-left: 18px; padding-right: 18px; }
  .fresh-source { padding-top: 56px; padding-bottom: 56px; }
  .fresh-track { grid-template-columns: 1fr; padding: 20px; }
  .fresh-track__cover { max-width: 240px; margin: 0 auto; }
  .fresh-track__name { text-align: center; }
  .fresh-track__artist, .fresh-track__controls, .fresh-track__links { justify-content: center; }
  .fresh-currently__grid { grid-template-columns: 1fr; }
  .fresh-connect__grid { grid-template-columns: 1fr; }
  .fresh-footer { grid-template-columns: 1fr; gap: 16px; }
  .fresh-footer__mid { display: none; }
  .fresh-footer__end { justify-self: start; }
  .fresh-constellation__node text { font-size: 22px; }
  .fresh-constellation__node text.sub { font-size: 16px; }

  /* v2 sections */
  .fresh-aligned .fresh-signal__inner { grid-template-columns: 1fr; gap: 20px; }
  .fresh-aligned .fresh-signal__label-col { position: static; }
  .fresh-precision { padding: 120px 18px; margin: 40px 0; }
  .fresh-circle, .fresh-path, .fresh-field, .fresh-out { padding-left: 18px; padding-right: 18px; }
  .fresh-circle, .fresh-path { padding-top: 64px; padding-bottom: 64px; }
  .fresh-path { margin: 0; border-radius: 0; padding-left: 18px; padding-right: 18px; }
  .fresh-path__entry { grid-template-columns: 1fr; gap: 6px; }
  .fresh-out__rooms { grid-template-columns: 1fr; }
  .fresh-room { padding: 22px 20px; grid-template-columns: 1fr auto; }
  .fresh-room__key { grid-column: 1 / -1; }
  .fresh-field__card { padding: 28px; }
}
