/* Pyrra Website UI Kit — styles.
   Depends on tokens declared in ../../colors_and_type.css                    */

/* ---- reset & shell ----------------------------------------------------- */
* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; }
body { background: var(--cream); color: var(--fg-1); }

.pyrra-page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px 0;
}
.pyrra-section { padding: 72px 0 4px; }
.pyrra-section--inset { padding-bottom: 56px; }

/* ---- atoms: button ----------------------------------------------------- */
.pyrra-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  border: 1px solid transparent; border-radius: 6px; cursor: pointer;
  text-decoration: none; line-height: 1; white-space: nowrap;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.pyrra-btn--md { height: 40px; padding: 0 18px; }
.pyrra-btn--lg { height: 48px; padding: 0 24px; font-size: 15px; border-radius: 8px; }
.pyrra-btn--sm { height: 32px; padding: 0 12px; font-size: 13px; }

.pyrra-btn--primary { background: var(--fire-700); color: #fff; }
.pyrra-btn--primary:hover { background: var(--fire-600); }
.pyrra-btn--primary:active { background: var(--fire-800); transform: translateY(1px); }

.pyrra-btn--secondary { background: transparent; color: var(--fire-700); border-color: var(--fire-700); }
.pyrra-btn--secondary:hover { background: rgba(215,53,2,0.06); }

.pyrra-btn--ghost { background: transparent; color: var(--fg-1); }
.pyrra-btn--ghost:hover { color: var(--accent); }

.pyrra-btn--dark { background: var(--ink-900); color: #fff; }
.pyrra-btn--dark:hover { background: var(--ink-800); }

/* ---- atoms: eyebrow & heading ----------------------------------------- */
.pyrra-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.pyrra-eyebrow--ink { color: var(--fg-1); }

.pyrra-heading { max-width: 880px; margin: 0 auto 36px; }
.pyrra-heading--center { text-align: center; }
.pyrra-heading--left { text-align: left; margin: 0 0 36px; }
.pyrra-heading__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 40px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--fg-1); margin: 8px 0 0;
  text-wrap: balance;
}
.pyrra-heading__sub { color: var(--fg-2); font-size: 16px; line-height: 1.55; margin: 14px auto 0; max-width: 620px; }

.pyrra-accent-word { color: var(--accent); }

/* ---- nav --------------------------------------------------------------- */
.pyrra-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px; padding: 0 36px;
  background: var(--cream);
}
.pyrra-nav__brand {
  justify-self: start;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.pyrra-nav__flame { width: 36px; height: 36px; object-fit: contain; }
.pyrra-nav__wordmark {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  letter-spacing: 0.06em; color: var(--fg-1);
}
.pyrra-nav__links { display: flex; gap: 38px; justify-self: center; }
.pyrra-nav__link {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--fg-1); text-decoration: none; padding: 4px 0; position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.pyrra-nav__link:hover { color: var(--accent); }
.pyrra-nav__link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--fire-700);
}
.pyrra-nav > .pyrra-btn { justify-self: end; }

/* ---- hero -------------------------------------------------------------- */
.pyrra-hero {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 1.05fr);
  align-items: stretch;
  gap: 0;
  border-radius: 0;
  padding: 16px 0 0;
}
.pyrra-hero__text {
  padding: 28px 36px 28px 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 18px;
}
.pyrra-hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(46px, 5.4vw, 70px); line-height: 1.05;
  letter-spacing: -0.012em; color: var(--fg-1); margin: 12px 0 0;
  text-wrap: balance;
}
.pyrra-hero__body { color: var(--fg-2); font-size: 15px; line-height: 1.6; max-width: 460px; }
.pyrra-hero__ctas { display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.pyrra-hero__media {
  border-radius: 4px; overflow: hidden;
  background: var(--ink-100);
  min-height: 380px;
  display: flex;
}
.pyrra-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pyrra-hero--wide .pyrra-hero__media { min-height: 280px; }

/* ---- spec bar ---------------------------------------------------------- */
.pyrra-specbar {
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; padding: 20px 36px;
  margin: 24px 0 0;
}
.pyrra-specbar__item { display: flex; align-items: center; gap: 14px; }
.pyrra-specbar__icon { color: var(--fg-1); display: flex; align-items: center; }
.pyrra-specbar__value { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--fg-1); line-height: 1.1; }
.pyrra-specbar__label {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3);
  margin-top: 2px;
}

/* ---- feature grid ----------------------------------------------------- */
.pyrra-features {
  display: grid; gap: 14px;
}
.pyrra-features--n3 { grid-template-columns: repeat(3, 1fr); }
.pyrra-features--n4 { grid-template-columns: repeat(4, 1fr); }
.pyrra-feature {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 8px;
}
.pyrra-feature__icon { color: var(--accent); margin-bottom: 4px; }
.pyrra-feature__title { font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.25; margin: 0; }
.pyrra-feature__body { font-family: var(--font-body); font-size: 13.5px; color: var(--fg-2); line-height: 1.55; margin: 0; }

/* ---- env cards -------------------------------------------------------- */
.pyrra-envs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pyrra-env {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.pyrra-env__image { height: 165px; background-size: cover; background-position: center; }
.pyrra-env__text { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.pyrra-env__text h4 { font-family: var(--font-display); font-weight: 500; font-size: 19px; margin: 0; }
.pyrra-env__text p { font-family: var(--font-body); font-size: 13.5px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.pyrra-env__action {
  display: inline-flex; align-items: center; height: 32px; padding: 0 12px;
  margin-top: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--fire-700); border: 1px solid var(--fire-700); border-radius: 6px;
  text-decoration: none; align-self: flex-start;
}
.pyrra-env__action:hover { background: rgba(215,53,2,0.06); }

/* ---- steps ------------------------------------------------------------ */
.pyrra-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pyrra-step {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px 18px 18px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
}
.pyrra-step__head { display: flex; gap: 12px; align-items: flex-start; }
.pyrra-step__num {
  width: 30px; height: 30px; flex: none;
  background: var(--fire-700); color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
}
.pyrra-step__head h4 { font-family: var(--font-display); font-weight: 500; font-size: 18px; margin: 4px 0 4px; line-height: 1.2; }
.pyrra-step__head p { margin: 0; font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.pyrra-step__image { height: 150px; border-radius: 8px; background-size: cover; background-position: center; }

/* ---- node spec cards -------------------------------------------------- */
.pyrra-nodes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pyrra-nodecard {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px;
  padding: 22px 24px 26px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
}
.pyrra-nodecard__head { display: flex; align-items: center; gap: 14px; }
.pyrra-nodecard__symbol { font-family: var(--font-display); font-weight: 600; font-size: 40px; color: var(--fire-700); line-height: 1; }
.pyrra-nodecard__name   { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--fg-1); }
.pyrra-nodecard__tag {
  margin-left: auto;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fire-700);
  border: 1px solid var(--fire-700); border-radius: 4px; padding: 5px 9px;
}
.pyrra-nodecard__intro { font-size: 14px; color: var(--fg-2); margin: -4px 0 4px; line-height: 1.55; }
.pyrra-nodecard__image { height: 200px; border-radius: 8px; background-size: cover; background-position: center; }
.pyrra-nodecard__specs { width: 100%; border-collapse: collapse; }
.pyrra-nodecard__specs td {
  border-top: 1px solid var(--border-subtle);
  padding: 12px 6px;
  font-family: var(--font-body); font-size: 13.5px;
  vertical-align: top;
}
.pyrra-nodecard__icon { color: var(--fg-1); width: 26px; }
.pyrra-nodecard__key { color: var(--fg-2); width: 40%; }
.pyrra-nodecard__val { color: var(--fg-1); font-weight: 500; }
.pyrra-nodecard__val ul { margin: 0; padding-left: 16px; }
.pyrra-nodecard__val li { margin-bottom: 2px; font-weight: 400; }

/* ---- "local by design" pull row -------------------------------------- */
.pyrra-localby {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 32px 0 56px;
}
.pyrra-localby__icon { color: var(--fg-1); }
.pyrra-localby p { font-family: var(--font-body); font-size: 14px; color: var(--fg-2); margin: 6px 0 0; line-height: 1.5; max-width: 480px; }

/* ---- network page: wide heading + accent second-line ---- */
.pyrra-network__intro .pyrra-heading { max-width: none; }
.pyrra-network__intro .pyrra-heading__sub { max-width: none; }
.pyrra-network__sub-line { white-space: nowrap; }

/* ---- network map ----------------------------------------------------- */
.pyrra-network-title { font-family: var(--font-display); font-weight: 500; font-size: 40px; line-height: 1.12; letter-spacing: -0.01em; text-align: left; margin: 10px 0 14px; }
.pyrra-network-lede { font-size: 15px; color: var(--fg-2); max-width: none; margin: 0 0 24px; line-height: 1.6; }

.pyrra-network {
  display: grid; grid-template-columns: 1fr 320px; gap: 16px;
  background: var(--ink-900);
  border-radius: 16px;
  padding: 22px; padding-right: 0;
  color: #fff;
}
.pyrra-network__map {
  position: relative;
  background: #F0EBE0;
  border-radius: 12px;
  height: 540px;
  overflow: hidden;
}
.pyrra-network__leaflet {
  position: absolute; inset: 0;
  background: #EFEBE2;
}
.pyrra-network__leaflet .leaflet-control-attribution { display: none; }
.pyrra-network__leaflet .leaflet-tile-pane { filter: saturate(0.55) brightness(1.04) contrast(0.92); }
.pyrra-network__leaflet .leaflet-container { background: #F0EBE0; }
.pyrra-network__bg {
  /* deprecated — leaflet replaced this */
  display: none;
}
.pyrra-network__controls {
  display: flex; flex-direction: column; gap: 6px;
  margin: 12px 0 0 12px;
}
.pyrra-network__controls button {
  width: 30px; height: 30px; background: #fff;
  border: 1px solid var(--border-subtle); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-1); cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 500; line-height: 1;
  box-shadow: 0 1px 2px rgba(14,13,12,0.06);
}
.pyrra-network__controls button:hover { background: var(--cream); }
.pyrra-network__legend {
  position: absolute; bottom: 14px; left: 14px; z-index: 600;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-body); font-size: 12px; color: var(--fg-1);
  box-shadow: none;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(255,255,255,0.85);
}
.pyrra-network__legend > div { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.pyrra-network__legend span { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; }

.pyrra-pin {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 5px 10px 6px;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.18);
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  /* center the pin on its lat/lng anchor */
  transform: translate(-50%, -100%) translateY(-6px);
}
.pyrra-pin::after {
  content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px; background: #fff;
  border-right: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.pyrra-pin:hover, .pyrra-pin.is-selected { box-shadow: 0 8px 20px -6px rgba(0,0,0,0.28), 0 0 0 2px var(--fire-700); }
.pyrra-pin.is-selected::after { border-color: var(--fire-700); }
.pyrra-pin__name { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--fg-1); }
.pyrra-pin__dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex: none; }
.pyrra-pin__row { display: flex; align-items: center; gap: 6px; padding-left: 13px; margin-top: 1px; }
.pyrra-pin__status { font-size: 10.5px; font-weight: 600; }
.pyrra-pin__nodes {
  font-size: 10px; font-weight: 600; color: var(--fg-2);
  background: var(--cream); border-radius: 999px; padding: 1px 6px;
  letter-spacing: 0.02em;
}
.pyrra-pin.is-selected .pyrra-pin__nodes { background: var(--fire-700); color: #fff; }

.pyrra-network__side {
  padding: 4px 22px 22px 8px;
  display: flex; flex-direction: column; gap: 12px;
  color: #fff;
}
.pyrra-network__side h3 { font-family: var(--font-display); font-weight: 500; font-size: 26px; margin: 4px 0 0; color: #fff; }
.pyrra-network__status-pill {
  align-self: flex-start;
  border: 1px solid; border-radius: 4px;
  padding: 3px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(255,255,255,0.04);
}
.pyrra-network__side dl { margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pyrra-network__side dl div { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pyrra-network__side dt { color: rgba(255,255,255,0.7); }
.pyrra-network__side dd { margin: 0; font-weight: 500; }
.pyrra-network__order {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.pyrra-network__order h4 { font-family: var(--font-display); font-weight: 500; font-size: 18px; margin: 0; color: #fff; }
.pyrra-network__order p { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.7); margin: 0; }
.pyrra-network__deposit { display: flex; align-items: baseline; gap: 8px; }
.pyrra-network__deposit-amt { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: #fff; }
.pyrra-network__deposit-cur { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.pyrra-network__order small { font-size: 11px; color: rgba(255,255,255,0.55); text-align: center; }

.pyrra-network-spec {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 24px;
}
.pyrra-network-spec > div { display: flex; gap: 12px; }
.pyrra-network-spec strong { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 4px; }
.pyrra-network-spec span { font-size: 13px; color: var(--fg-2); line-height: 1.5; }
.pyrra-network-spec svg { color: var(--fg-1); flex: none; margin-top: 4px; }

/* ---- waitlist --------------------------------------------------------- */
.pyrra-waitlist { display: grid; grid-template-columns: minmax(0, 1.4fr) 340px; gap: 18px; align-items: start; }
.pyrra-waitlist__form {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px;
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 6px;
}
.pyrra-waitlist__form h2 { font-family: var(--font-display); font-weight: 500; font-size: 26px; margin: 0; }
.pyrra-waitlist__sub { font-size: 13.5px; color: var(--fg-2); margin: 0 0 18px; }
.pyrra-waitlist__form label { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--fg-1); margin-top: 10px; }
.pyrra-input {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-1);
  height: 40px; padding: 0 12px;
  background: #fff;
  border: 1px solid var(--border-strong); border-radius: 6px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.pyrra-input::placeholder { color: var(--ink-400); }
.pyrra-input:focus { border-color: var(--fire-700); box-shadow: 0 0 0 3px rgba(215,53,2,0.12); }
.pyrra-textarea { height: 88px; padding: 10px 12px; line-height: 1.45; resize: vertical; }
.pyrra-waitlist__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.pyrra-waitlist__row > div { display: flex; flex-direction: column; gap: 6px; }
.pyrra-waitlist__radios { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.pyrra-radio {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: #fff;
  border: 1px solid var(--border-strong); border-radius: 6px;
  font-family: var(--font-body); font-size: 13px;
  text-align: left; cursor: pointer;
  transition: border-color var(--dur-fast);
}
.pyrra-radio.is-checked { border-color: var(--fire-700); }
.pyrra-radio__ring { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--ink-400); position: relative; flex: none; }
.pyrra-radio.is-checked .pyrra-radio__ring { border-color: var(--fire-700); }
.pyrra-radio.is-checked .pyrra-radio__ring::after {
  content: ''; position: absolute; inset: 2px; background: var(--fire-700); border-radius: 50%;
}
.pyrra-radio strong { display: block; font-weight: 500; }
.pyrra-radio small { display: block; font-size: 11px; color: var(--fg-3); }
.pyrra-checkbox { display: flex; align-items: center; gap: 8px; font-size: 12.5px !important; color: var(--fg-2) !important; margin-top: 14px !important; }
.pyrra-waitlist__hint { font-size: 11.5px; color: var(--fg-3); margin: 4px 0 0; line-height: 1.5; }
.pyrra-checkbox a { color: var(--fire-700); }
.pyrra-waitlist__form .pyrra-btn { margin-top: 8px; }
.pyrra-waitlist__lock { display: flex; align-items: center; gap: 6px; justify-content: center; font-size: 11px; color: var(--fg-3); margin-top: 6px; }

.pyrra-waitlist__side {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-card);
}
.pyrra-waitlist__benefit { display: flex; gap: 14px; align-items: flex-start; }
.pyrra-waitlist__benefit-icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%; border: 1.5px solid var(--fire-700); color: var(--fire-700);
  display: flex; align-items: center; justify-content: center;
}
.pyrra-waitlist__side h4 { font-family: var(--font-display); font-weight: 500; font-size: 18px; line-height: 1.2; margin: 0; }
.pyrra-waitlist__side p { font-size: 12.5px; color: var(--fg-2); line-height: 1.5; margin: 4px 0 0; }
.pyrra-waitlist__side hr { border: 0; border-top: 1px solid var(--border-subtle); margin: 0; }
.pyrra-waitlist__contact { font-size: 13px; color: var(--fg-1); line-height: 1.5; margin: 0; }
.pyrra-waitlist__contact a { color: var(--fire-700); font-weight: 600; }

/* ---- story / approach (about page) ----------------------------------- */
.pyrra-story { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: start; }
.pyrra-story__text h2 { font-family: var(--font-display); font-weight: 500; font-size: 34px; line-height: 1.15; margin: 8px 0 14px; }
.pyrra-story__text p { color: var(--fg-2); font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.pyrra-story__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pyrra-story__images > div { aspect-ratio: 4/5; background-size: cover; background-position: center; border-radius: 10px; }

.pyrra-approach { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pyrra-approach__step { display: flex; flex-direction: column; gap: 6px; }
.pyrra-approach__img { height: 110px; background-size: cover; background-position: center; border-radius: 10px; }
.pyrra-approach__num { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; margin-top: 8px; }
.pyrra-approach__step h4 { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin: 0; }
.pyrra-approach__step p { font-size: 13.5px; color: var(--fg-2); line-height: 1.55; margin: 0; }

.pyrra-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 14px 0 56px; }
.pyrra-pillars > div { display: flex; gap: 14px; align-items: flex-start; }
.pyrra-pillars strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--fg-1); margin-bottom: 4px; }
.pyrra-pillars span { font-size: 13px; color: var(--fg-2); line-height: 1.5; }
.pyrra-pillars svg { color: var(--fg-1); flex: none; margin-top: 4px; }

/* ---- bottom CTA strip ----------------------------------------------- */
.pyrra-cta {
  position: relative;
  margin: 32px 0 0;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink-900);
  isolation: isolate;
}
.pyrra-cta__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(14,13,12,0.95) 0%, rgba(14,13,12,0.65) 50%, rgba(214,80,21,0.55) 100%),
              url('img/cta-band.webp') center top / cover no-repeat;
}
.pyrra-cta__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
  padding: 36px 36px;
  max-width: 1280px; margin: 0 auto;
}
.pyrra-cta__text h2 { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.15; margin: 0 0 6px; }
.pyrra-cta__text p { font-size: 13.5px; color: rgba(255,255,255,0.78); line-height: 1.55; margin: 0; max-width: 540px; }

/* ---- specs: link card on Nodes page ---------------------------------- */
.pyrra-section--specs-link { padding-top: 32px; padding-bottom: 12px; }
.pyrra-specslink {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--fire-700);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  color: var(--fg-1);
  text-decoration: none;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.pyrra-specslink:hover { box-shadow: var(--shadow-raised); transform: translateY(-1px); color: var(--fg-1); }
.pyrra-specslink__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(215,53,2,0.08);
  color: var(--fire-700);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.pyrra-specslink__text { display: flex; flex-direction: column; gap: 4px; }
.pyrra-specslink__text h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  margin: 4px 0 0; line-height: 1.2;
}
.pyrra-specslink__text p { font-size: 13.5px; color: var(--fg-2); margin: 4px 0 0; line-height: 1.55; max-width: 560px; }
.pyrra-specslink__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--fire-700);
  white-space: nowrap;
}

/* ---- specs: P1 vs P2 comparison table -------------------------------- */
.pyrra-spectable {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pyrra-spectable__head,
.pyrra-spectable__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}
.pyrra-spectable__head {
  background: var(--ink-100);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 22px;
}
.pyrra-spectable__row { padding: 14px 22px; border-top: 1px solid var(--border-subtle); }
.pyrra-spectable__row:nth-child(even) { background: rgba(244, 239, 229, 0.45); }
.pyrra-spectable__col {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-1);
  line-height: 1.45;
}
.pyrra-spectable__col--label {
  font-size: 13px; color: var(--fg-2); font-weight: 500;
}
.pyrra-spectable__head .pyrra-spectable__col--label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3);
}
.pyrra-spectable__sym {
  font-family: var(--font-display); font-weight: 600; font-size: 30px;
  color: var(--fire-700); line-height: 1; display: block;
}
.pyrra-spectable__sub {
  display: block;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-top: 4px;
}

/* ---- specs: spec block (factsheet — label + tabular rows only) ----- */
.pyrra-specblock { padding: 28px 0 0; }
.pyrra-specblock__label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink-900);
}
.pyrra-specblock__icon {
  width: 28px; height: 28px;
  color: var(--fg-1);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.pyrra-specblock__eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-1);
}
.pyrra-speclist {
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.pyrra-speclist > div {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: baseline;
}
.pyrra-speclist > div:nth-child(even) { background: rgba(244, 239, 229, 0.4); }
.pyrra-speclist dt {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--fg-2);
}
.pyrra-speclist dd {
  margin: 0;
  font-family: var(--font-body); font-size: 13.5px;
  color: var(--fg-1); font-weight: 500; line-height: 1.5;
}

/* ---- specs: factsheet header & section labels ---------------------- */
.pyrra-factsheet__head {
  padding: 32px 0 36px;
  border-bottom: 1px solid var(--border-subtle);
  max-width: 760px;
}
.pyrra-factsheet__head h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 44px; line-height: 1.1; letter-spacing: -0.012em;
  margin: 12px 0 16px; color: var(--fg-1);
  text-wrap: balance;
}
.pyrra-factsheet__head p {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-2);
  line-height: 1.6; margin: 0; max-width: 640px;
}
.pyrra-factsheet__meta {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  margin-top: 22px;
  padding: 14px 0 0;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-body); font-size: 12.5px; color: var(--fg-2);
}
.pyrra-factsheet__meta > span { min-width: 120px; }
.pyrra-factsheet__meta strong {
  display: block;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 2px;
}
.pyrra-factsheet__ctas { display: flex; gap: 10px; margin-top: 22px; }

.pyrra-factsheet__label {
  display: flex; align-items: baseline; gap: 14px;
  margin: 24px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink-900);
}
.pyrra-factsheet__label--inline {
  /* used when the next block isn't wrapped in a <section> */
  margin: 56px 0 14px;
}
.pyrra-factsheet__num {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--fg-3);
}
.pyrra-factsheet__name {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-1);
  white-space: nowrap;
}

/* ---- factsheet: section lede + sub-table title ----------------------- */
.pyrra-section__lede {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  line-height: 1.6; margin: 0 0 18px; max-width: 760px;
}
.pyrra-fintable__sub {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3);
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px dotted var(--border-strong);
}
.pyrra-factsheet__disclaim {
  font-family: var(--font-body); font-size: 12.5px; font-style: italic;
  color: var(--fg-3); line-height: 1.55;
  margin: 14px 0 0 !important;
  padding: 12px 16px;
  background: var(--ink-100);
  border-left: 2px solid var(--ink-300);
  max-width: 720px;
}

/* ---- finance: tables (Year 1, 5-year, tax, assumptions) ------------- */
.pyrra-fintable {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
  --cols: 4;
}
.pyrra-fintable__head,
.pyrra-fintable__row {
  display: grid;
  grid-template-columns: 1.5fr repeat(calc(var(--cols) - 1), 1fr);
}
.pyrra-fintable__head {
  background: var(--ink-100);
  border-bottom: 1px solid var(--border-strong);
}
.pyrra-fintable__cell {
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-1);
  line-height: 1.45;
  text-align: right;
  white-space: nowrap;
  border-left: 1px solid var(--border-subtle);
}
.pyrra-fintable__cell:first-child,
.pyrra-fintable__cell--label {
  text-align: left;
  white-space: normal;
  border-left: 0;
}
.pyrra-fintable__cell--head {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-3);
  padding-top: 14px; padding-bottom: 14px;
}
.pyrra-fintable__row { border-top: 1px solid var(--border-subtle); }
.pyrra-fintable__row:first-child { border-top: 0; }
.pyrra-fintable__row:nth-child(even):not(.is-emphasis) { background: rgba(244, 239, 229, 0.45); }
.pyrra-fintable__row.is-negative .pyrra-fintable__cell { color: var(--fg-2); }
.pyrra-fintable__row.is-emphasis {
  background: var(--ink-900);
  color: #fff;
}
.pyrra-fintable__row.is-emphasis .pyrra-fintable__cell {
  color: #fff; font-weight: 600;
  border-left-color: rgba(255,255,255,0.1);
}
.pyrra-fintable__footnote {
  font-family: var(--font-body); font-size: 12px; font-style: italic;
  color: var(--fg-3); line-height: 1.55;
  margin: 12px 4px 0; max-width: 880px;
}

/* ---- finance: cash waterfall ---------------------------------------- */
.pyrra-finance-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.pyrra-finance-flow__panels { display: flex; flex-direction: column; gap: 14px; }

.pyrra-waterfall { display: flex; flex-direction: column; gap: 8px; }
.pyrra-waterfall__node {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--fire-700);
  border-radius: 6px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: baseline;
  box-shadow: var(--shadow-card);
}
.pyrra-waterfall__node--gross    { border-left-color: var(--fg-1); }
.pyrra-waterfall__node--capacity { border-left-color: var(--fire-700); }
.pyrra-waterfall__node--net      { border-left-color: var(--status-available); background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.pyrra-waterfall__node--net .pyrra-waterfall__num    { color: rgba(255,255,255,0.5); }
.pyrra-waterfall__node--net .pyrra-waterfall__label  { color: #fff; }
.pyrra-waterfall__node--net .pyrra-waterfall__hint   { color: rgba(255,255,255,0.7); }
.pyrra-waterfall__num {
  grid-row: 1 / span 2;
  font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--fg-3);
  line-height: 1;
}
.pyrra-waterfall__label {
  font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--fg-1); line-height: 1.2;
}
.pyrra-waterfall__hint {
  font-family: var(--font-body); font-size: 12px; color: var(--fg-3); line-height: 1.45;
}
.pyrra-waterfall__deduct { padding: 4px 0 4px 18px; }
.pyrra-waterfall__deduct-arrow {
  font-size: 16px; color: var(--fg-3); line-height: 1; margin-bottom: 4px;
}
.pyrra-waterfall__deduct-row {
  display: grid; grid-template-columns: 16px 1fr auto; gap: 8px;
  align-items: baseline;
  padding: 4px 0;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
}
.pyrra-waterfall__op { color: var(--fire-700); font-weight: 600; }
.pyrra-waterfall__deduct-label { color: var(--fg-1); font-weight: 500; }
.pyrra-waterfall__deduct-val { color: var(--fg-3); font-size: 12px; }

/* ---- finance: bullet panels (fee covers / owner pays / etc) -------- */
.pyrra-bullets {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 18px 20px;
}
.pyrra-bullets--muted { background: var(--ink-100); }
.pyrra-bullets h4 {
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  margin: 6px 0 12px; color: var(--fg-1); line-height: 1.2;
}
.pyrra-bullets ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pyrra-bullets li {
  font-family: var(--font-body); font-size: 13.5px; color: var(--fg-1);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.pyrra-bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--fire-700);
}

/* ---- finance: two-paths (Financed vs Cash) -------------------------- */
.pyrra-twopaths { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pyrra-twopaths__col {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 22px 24px 24px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
}
.pyrra-twopaths__col--lev { border-top: 3px solid var(--fire-700); }
.pyrra-twopaths__col--liq { border-top: 3px solid var(--ink-900); }
.pyrra-twopaths__head { display: flex; align-items: baseline; gap: 12px; }
.pyrra-twopaths__pill {
  display: inline-block;
  flex: none;
  white-space: nowrap;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 3px 8px;
}
.pyrra-twopaths__head h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  margin: 0; color: var(--fg-1); line-height: 1.2;
}
.pyrra-twopaths__col > p {
  font-family: var(--font-body); font-size: 13.5px; color: var(--fg-2);
  line-height: 1.6; margin: 0;
}
.pyrra-twopaths__meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.pyrra-twopaths__meta strong {
  display: block;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 2px;
}
.pyrra-twopaths__meta span {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--fg-1);
}
.pyrra-twopaths__bestfor-label {
  display: block;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 8px;
}
.pyrra-twopaths__bestfor ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pyrra-twopaths__bestfor li {
  font-family: var(--font-body); font-size: 13px; color: var(--fg-1);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.pyrra-twopaths__bestfor li::before {
  content: '+'; position: absolute; left: 0; top: 0;
  color: var(--fire-700); font-weight: 600;
}

/* ---- finance: def-list (Not in numbers / Risk factors) -------------- */
.pyrra-deflist {
  margin: 0; padding: 0;
  display: grid; gap: 14px;
}
.pyrra-deflist--cols-1 { grid-template-columns: 1fr; }
.pyrra-deflist--cols-2 { grid-template-columns: 1fr 1fr; }
.pyrra-deflist__item {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--fire-700);
  border-radius: 6px;
  padding: 16px 18px 18px;
}
.pyrra-deflist dt {
  font-family: var(--font-display); font-weight: 500; font-size: 19px;
  color: var(--fg-1); line-height: 1.2; margin: 0 0 6px;
}
.pyrra-deflist dd {
  margin: 0;
  font-family: var(--font-body); font-size: 13.5px; color: var(--fg-2);
  line-height: 1.6;
}

/* ---- finance: link card (variant on specs link card) --------------- */
.pyrra-specslink--finance { border-left-color: var(--ink-900); }
.pyrra-specslink--finance .pyrra-specslink__icon {
  background: rgba(14,13,12,0.06);
  color: var(--fg-1);
}

/* legal-footer style */
.pyrra-specs-footnote--legal {
  font-style: italic;
  text-align: left;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  max-width: 960px;
  line-height: 1.6;
  margin: 24px auto 0;
}

/* ---- financials page: tighter rhythm + edge-to-edge disclaimer ----- */
.pyrra-financials .pyrra-factsheet__head {
  border-bottom: 0;
  padding-bottom: 8px;
}
.pyrra-financials .pyrra-section { padding-top: 36px; padding-bottom: 0; }
.pyrra-financials .pyrra-section--disclaim { padding-top: 18px; }
.pyrra-financials .pyrra-specs-footnote--legal {
  max-width: 100%;
  margin: 0;
}

/* ---- specs: fits / does not fit -------------------------------------- */
.pyrra-fits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.pyrra-fits__col {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px 26px 26px;
  box-shadow: var(--shadow-card);
}
.pyrra-fits__col--yes { border-top: 3px solid var(--status-available); }
.pyrra-fits__col--no  { border-top: 3px solid var(--status-reserved); }
.pyrra-fits__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.pyrra-fits__mark {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 18px; line-height: 1;
}
.pyrra-fits__mark--yes { background: rgba(46,168,79,0.12); color: var(--status-available); }
.pyrra-fits__mark--no  { background: rgba(229,72,77,0.12); color: var(--status-reserved); }
.pyrra-fits__head h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  margin: 0; color: var(--fg-1);
}
.pyrra-fits ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pyrra-fits li {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-1);
  line-height: 1.5;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}
.pyrra-fits li:first-child { border-top: 0; }
.pyrra-fits li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 6px; height: 6px; border-radius: 50%;
}
.pyrra-fits__col--yes li::before { background: var(--status-available); }
.pyrra-fits__col--no  li::before { background: var(--status-reserved); }

/* ---- specs: pre-install checklist ----------------------------------- */
.pyrra-checklist {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.pyrra-checklist__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 22px 22px;
  box-shadow: var(--shadow-card);
}
.pyrra-checklist__item:first-child { grid-column: 1 / -1; }
.pyrra-checklist__num {
  font-family: var(--font-display); font-weight: 500; font-size: 38px;
  color: var(--fire-700); line-height: 1;
  letter-spacing: -0.01em;
}
.pyrra-checklist__text h4 {
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  margin: 0 0 6px; color: var(--fg-1); line-height: 1.2;
}
.pyrra-checklist__text p {
  font-family: var(--font-body); font-size: 13.5px;
  color: var(--fg-2); line-height: 1.55; margin: 0;
}

/* ---- specs: FAQ ------------------------------------------------------ */
.pyrra-faq {
  border-top: 1px solid var(--border-subtle);
  max-width: 880px; margin: 0 auto;
}
.pyrra-faq__item { border-bottom: 1px solid var(--border-subtle); }
.pyrra-faq__item > summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 4px;
  cursor: pointer;
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  color: var(--fg-1); line-height: 1.3;
  transition: color var(--dur-fast) var(--ease-out);
}
.pyrra-faq__item > summary::-webkit-details-marker { display: none; }
.pyrra-faq__item > summary:hover { color: var(--fire-700); }
.pyrra-faq__chev {
  font-family: var(--font-body); font-weight: 400; font-size: 24px;
  color: var(--fg-3); flex: none;
  transition: transform var(--dur-base) var(--ease-out);
  line-height: 1;
}
.pyrra-faq__item[open] .pyrra-faq__chev { transform: rotate(45deg); color: var(--fire-700); }
.pyrra-faq__body {
  font-family: var(--font-body); font-size: 14.5px; color: var(--fg-2);
  line-height: 1.65; padding: 0 32px 22px 4px;
  max-width: 760px;
}

.pyrra-specs-footnote {
  margin: 36px auto 0;
  font-family: var(--font-body); font-size: 12px;
  color: var(--fg-3); text-align: center;
  letter-spacing: 0.02em;
  max-width: 720px;
}

/* ---- legal pages: long-form prose -------------------------------------- */
.pyrra-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 64px;
  color: var(--fg-1);
}
.pyrra-legal__head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}
.pyrra-legal__head h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 44px; line-height: 1.1; letter-spacing: -0.012em;
  margin: 10px 0 8px;
  text-wrap: balance;
}
.pyrra-legal__org {
  font-family: var(--font-display); font-size: 18px; color: var(--fg-1);
  margin: 0 0 14px;
}
.pyrra-legal__meta {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  margin: 14px 0 0;
}
.pyrra-legal__meta > div { min-width: 120px; }
.pyrra-legal__meta dt {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 2px;
}
.pyrra-legal__meta dd {
  margin: 0;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-1);
}

.pyrra-legal__section { margin: 0 0 28px; }
.pyrra-legal__section h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 1.25; letter-spacing: -0.005em;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
}
.pyrra-legal__section h3 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; letter-spacing: 0.02em;
  margin: 18px 0 6px;
  color: var(--fg-1);
}
.pyrra-legal__section p {
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--fg-2); line-height: 1.7;
  margin: 0 0 10px;
}
.pyrra-legal__section a {
  color: var(--fire-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pyrra-legal__address {
  font-family: var(--font-body); font-size: 14px;
  color: var(--fg-1) !important; line-height: 1.7;
  background: var(--ink-100);
  border-left: 2px solid var(--ink-300);
  padding: 12px 16px;
  margin: 8px 0 16px !important;
}
.pyrra-legal__caps {
  font-size: 13px !important;
  letter-spacing: 0.01em;
  color: var(--fg-1) !important;
}
.pyrra-legal__footer {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}
.pyrra-legal__footer p {
  font-family: var(--font-body); font-size: 12.5px;
  color: var(--fg-3); line-height: 1.65;
  font-style: italic;
  margin: 0 0 8px;
}
.pyrra-legal__footer p:last-child { font-style: normal; }

/* ---- footer --------------------------------------------------------- */
.pyrra-footer { background: var(--ink-900); color: rgba(255,255,255,0.7); margin: 0 -36px; }
.pyrra-footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 28px;
  padding: 28px 36px 16px;
}
.pyrra-footer__brand { display: flex; align-items: center; gap: 6px; color: #fff; font-family: var(--font-display); font-size: 24px; letter-spacing: 0.06em; }
.pyrra-footer__brand img { width: 28px; height: 28px; }
.pyrra-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pyrra-footer__cols h5 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 10px; }
.pyrra-footer__cols a { display: block; color: rgba(255,255,255,0.75); text-decoration: none; padding: 2px 0; font-size: 13px; }
.pyrra-footer__cols a:hover { color: var(--accent); }
.pyrra-footer__strip {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5);
}
