/* a soft, symmetrical radiance — Libra: a wash held in balance.
   rose crown at top-centre, a mirrored pair of faint indigo glows
   at equal offsets left and right. */
body {
  background:
    radial-gradient(920px 640px at 50% -14%, color-mix(in srgb, var(--accent-2) 10%, transparent), transparent 60%),
    radial-gradient(700px 560px at 11% 16%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 64%),
    radial-gradient(700px 560px at 89% 16%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 64%),
    var(--bg);
  background-attachment: fixed;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(1100px 520px at 50% 0%, color-mix(in srgb, var(--accent-2) 7%, transparent), transparent 70%);
}
@media (prefers-reduced-motion: no-preference) {
  body::before { animation: lp-glow 14s ease-in-out infinite; }
}
@keyframes lp-glow { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

.lp { max-width: 920px; margin: 0 auto; padding: 26px 24px 80px; }

.lp-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 10px 24px;
}
.lp-mark-wrap { display: flex; flex-direction: column; gap: 4px; }
.lp-mark {
  font-family: var(--serif); font-size: 17px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent-2);
}
.lp-mark b { font-weight: 600; }
.lp-mark-tagline {
  font-family: var(--serif); font-style: italic; font-size: 11.5px;
  letter-spacing: 0; text-transform: none; color: var(--ink-faint);
  white-space: nowrap;
}
@media (max-width: 700px) { .lp-mark-tagline { white-space: normal; max-width: 280px; } }
.lp-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; font-size: 13px; margin-top: 3px; }
.lp-nav a { color: var(--ink-dim); text-decoration: none; transition: color .15s; }
.lp-nav a:hover { color: var(--accent); }
/* was its own orange (--arch-9, Sagittarius) — sitting next to Scorpio
   Mode's garnet, two unrelated saturated hues in one short row read as
   a clash, not a system. Scorpio Mode is the one thing in this nav that
   actually needs to stand out (it's the subscription product); Explore
   keeps its arrow as its marker instead of competing for the same job. */
.lp-nav a.lp-nav-explore { font-weight: 600; }
.lp-nav a.lp-nav-explore:hover { color: var(--accent); }

/* plain colored text, same weight as .lp-nav-explore — the one nav
   destination that isn't a free tool, without adding another pill shape
   next to the brand mark and the night toggle */
.lp-nav a.lp-nav-scorpio { color: var(--scorpio); font-weight: 700; }
.lp-nav a.lp-nav-scorpio:hover { color: var(--scorpio-2); }
body.theme-night .lp-nav a.lp-nav-scorpio { color: var(--scorpio-2); }

.lp-hero { position: relative; z-index: 0; margin: 64px 0 48px; max-width: 640px; }
.lp-orbit {
  position: absolute; top: 50%; right: -60px; transform: translateY(-50%);
  width: min(46vw, 420px); height: min(46vw, 420px);
  pointer-events: none; z-index: -1;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--accent-2) 7%, transparent));
}
.lp-orbit-ring { fill: none; stroke-width: 1; }
.lp-orbit-ring-a { stroke: url(#lp-grad-a); stroke-opacity: .5; }
.lp-orbit-ring-b { stroke: url(#lp-grad-b); stroke-opacity: .45; stroke-width: .9; }
.lp-orbit-ring-c { stroke: url(#lp-grad-c); stroke-opacity: .6; }
.lp-grad-stop-accent-strong   { stop-color: var(--accent); stop-opacity: .28; }
.lp-grad-stop-accent-mid      { stop-color: var(--accent); stop-opacity: .12; }
.lp-grad-stop-accent2-strong  { stop-color: var(--accent-2); stop-opacity: .26; }
.lp-grad-stop-accent2-mid     { stop-color: var(--accent-2); stop-opacity: .12; }
.lp-grad-stop-blend-strong    { stop-color: color-mix(in srgb, var(--accent) 50%, var(--accent-2)); stop-opacity: .3; }
.lp-grad-stop-fade            { stop-color: var(--accent); stop-opacity: 0; }
.lp-orbit-ticks line { stroke: var(--accent); stroke-opacity: .16; stroke-width: 1; }
.lp-orbit-stars circle { fill: var(--accent-2); opacity: .22; }
.lp-orbit-stars circle:nth-child(2n) { fill: var(--accent); opacity: .16; }
.lp-orbit-glyph { font-family: var(--serif); font-size: 14px; fill: var(--accent); opacity: .28; }
.lp-orbit-glyph-2 { fill: var(--accent-2); }
.lp-orbit-glyph-sm { font-size: 10.5px; opacity: .2; }

/* each glyph actually travels around center (200,200); durations are
   scaled to resemble real relative speed — Moon ~27 days, Venus ~225
   days, Sun ~1yr, Node ~18.6yr (retrograde, so it spins the other
   way), Saturn ~29yr, Pluto ~248yr — compressed into a watchable
   range but keeping the same rough ratio. Each glyph counter-rotates
   at the same rate as its own orbit so it never tips over. */
@media (prefers-reduced-motion: no-preference) {
  .lp-orbit-orbiter { transform-origin: 200px 200px; animation-timing-function: linear; animation-iteration-count: infinite; }
  .lp-orbit-orbit-moon   { animation-name: lp-orbit-cw;  animation-duration: 4s; }
  .lp-orbit-orbit-venus  { animation-name: lp-orbit-cw;  animation-duration: 12.5s; }
  .lp-orbit-orbit-sun    { animation-name: lp-orbit-cw;  animation-duration: 16s; }
  .lp-orbit-orbit-node   { animation-name: lp-orbit-ccw; animation-duration: 68s; }
  .lp-orbit-orbit-saturn { animation-name: lp-orbit-cw;  animation-duration: 86s; }
  .lp-orbit-orbit-pluto  { animation-name: lp-orbit-cw;  animation-duration: 260s; }
  .lp-orbit-counter { transform-box: fill-box; transform-origin: center; animation-timing-function: linear; animation-iteration-count: infinite; }
  .lp-orbit-orbit-moon .lp-orbit-counter   { animation-name: lp-orbit-ccw; animation-duration: 4s; }
  .lp-orbit-orbit-venus .lp-orbit-counter  { animation-name: lp-orbit-ccw; animation-duration: 12.5s; }
  .lp-orbit-orbit-sun .lp-orbit-counter    { animation-name: lp-orbit-ccw; animation-duration: 16s; }
  .lp-orbit-orbit-node .lp-orbit-counter   { animation-name: lp-orbit-cw;  animation-duration: 68s; }
  .lp-orbit-orbit-saturn .lp-orbit-counter { animation-name: lp-orbit-ccw; animation-duration: 86s; }
  .lp-orbit-orbit-pluto .lp-orbit-counter  { animation-name: lp-orbit-ccw; animation-duration: 260s; }
}
@keyframes lp-orbit-cw  { to { transform: rotate(360deg); } }
@keyframes lp-orbit-ccw { to { transform: rotate(-360deg); } }
@media (max-width: 760px) { .lp-orbit { display: none; } }
.lp-kicker {
  margin: 0 0 12px; font-size: 12px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-faint);
}
.lp-hero h1 {
  margin: 0 0 18px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 5vw, 44px); line-height: 1.15; color: var(--ink);
}
.lp-lede {
  margin: 0 0 26px; font-size: 16px; line-height: 1.7; color: var(--ink-dim);
}
.lp-cta {
  display: inline-block; font-size: 14px; font-weight: 600;
  color: #fff; background: var(--accent);
  padding: 11px 20px; border-radius: 9px; text-decoration: none;
  transition: background .15s, transform .15s;
}
.lp-cta:hover { background: color-mix(in srgb, var(--accent) 88%, #000); transform: translateY(-1px); }

.lp-quote {
  position: relative;
  margin: 56px 0; padding: 2px 0 2px 22px;
  max-width: 600px;
  border-left: 2px solid var(--accent-2);
}
.lp-quote-mark { display: none; }
.lp-quote blockquote {
  margin: 0 0 10px; font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 2vw, 19px); line-height: 1.55; color: var(--ink);
}
.lp-quote a { font-size: 12.5px; color: var(--accent); text-decoration: none; }
.lp-quote a:hover { text-decoration: underline; }

/* exactly 3 cards, always — auto-fit's usual minmax trick leaves an
   orphaned 3rd card alone on its own row at in-between widths (enough
   room for 2 columns, not quite 3), so this goes straight from 1 column
   to 3, skipping the awkward middle state entirely */
.lp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 56px 0;
}
@media (max-width: 720px) {
  .lp-grid { grid-template-columns: 1fr; }
}
.lp-card {
  --card-accent: var(--accent);
  position: relative; overflow: hidden;
  display: block; text-decoration: none;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 22px;
  transition: border-color .2s var(--ease-soft), transform .2s var(--ease-soft), box-shadow .2s var(--ease-soft);
}
.lp-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 40%, var(--line));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--card-accent) 10%, transparent);
}
.lp-card-glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  font-family: var(--serif); font-size: 17px; color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 14%, transparent);
}
.lp-card h3 {
  margin: 14px 0 6px; font-family: var(--serif); font-weight: 600;
  font-size: 17px; color: var(--ink);
}
.lp-card p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink-dim); }

/* the one direct, human offer on the page — set apart from the tool
   cards above (calculated views) and the newsletter box below (a
   passive subscription) by asking for something instead: a real
   conversation. Warmer and more saturated than its neighbors so it
   reads as the "talk to a person" moment among several "use the tool"
   ones. */
.lp-reading {
  margin: 56px 0 0; padding: 30px 32px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 520px 300px at 100% -30%, color-mix(in srgb, var(--accent-2) 20%, transparent), transparent 70%),
    radial-gradient(ellipse 520px 300px at 0% 130%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%),
    var(--bg-2);
  border: 1px solid color-mix(in srgb, var(--accent-2) 30%, var(--line));
}
.lp-reading-text { flex: 1 1 360px; min-width: 0; }
.lp-reading-kicker {
  margin: 0 0 8px; font-size: 11px; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent-2);
}
.lp-reading-title {
  margin: 0 0 8px; font-family: var(--serif); font-weight: 500; font-size: 21px;
  color: var(--ink); text-wrap: balance;
}
.lp-reading-line { margin: 0; max-width: 46ch; font-size: 14px; line-height: 1.65; color: var(--ink-dim); }
.lp-reading-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 16px; color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: 999px;
  background: var(--cta-gradient);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-2) 28%, transparent);
  transition: transform .22s var(--ease-soft), box-shadow .22s var(--ease-soft);
}
.lp-reading-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-2) 38%, transparent);
}
@media (max-width: 640px) { .lp-reading { padding: 26px; } .lp-reading-cta { width: 100%; justify-content: center; } }

.lp-weekly {
  margin: 56px 0 0; padding: 26px 28px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 420px 240px at 12% -30%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%),
    var(--bg-2);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  text-align: center;
}
.lp-weekly-kicker {
  margin: 0 0 8px; font-size: 11px; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lp-weekly-soon {
  font-size: 9.5px; font-weight: 700; letter-spacing: .06em;
  padding: 2px 8px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent-2) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-2) 30%, transparent);
  color: var(--accent-2);
}
.lp-weekly-title {
  margin: 0 0 10px; font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink);
}
.lp-weekly-line {
  margin: 0 auto 14px; max-width: 52ch; font-size: 14px; line-height: 1.65; color: var(--ink-dim);
}
.lp-weekly-links {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 6px 16px; margin: 0 0 20px; font-size: 13px;
}
.lp-weekly-links a {
  color: var(--ink-dim); text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  transition: color .15s var(--ease-soft), border-color .15s var(--ease-soft);
}
.lp-weekly-links a:hover { color: var(--ink); border-color: var(--accent); }
.lp-subscribe-form {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.lp-subscribe-form input[type="email"] {
  font: inherit; font-size: 14px; padding: 9px 14px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line); color: var(--ink);
  width: 240px; max-width: 100%;
}
.lp-subscribe-form input[type="email"]:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.lp-subscribe-form button {
  font: inherit; font-size: 14px; font-weight: 600; color: #fff; cursor: pointer;
  padding: 9px 20px; border: none; border-radius: 999px;
  background: var(--cta-gradient);
  transition: transform .15s var(--ease-soft), box-shadow .15s var(--ease-soft);
}
.lp-subscribe-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-2) 25%, transparent); }
.lp-subscribe-form button:disabled { opacity: .5; cursor: wait; transform: none; box-shadow: none; }
#lp-subscribe-note { margin: 10px 0 0; }
#lp-subscribe-note.is-error { color: var(--accent-2); }

.lp-contact {
  margin: 56px 0 0; padding: 26px 28px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 420px 240px at 12% -30%, color-mix(in srgb, var(--accent-2) 14%, transparent), transparent 70%),
    radial-gradient(ellipse 420px 240px at 100% 130%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%),
    var(--bg-2);
  border: 1px solid color-mix(in srgb, var(--accent-2) 22%, var(--line));
  text-align: center;
}
.lp-contact-kicker {
  margin: 0 0 6px; font-size: 11px; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent-2);
}
.lp-contact-line { margin: 0 0 16px; font-size: 15px; color: var(--ink-dim); }
.lp-contact-link {
  display: inline-block;
  font-family: var(--serif); font-size: 16px; color: var(--ink);
  text-decoration: none;
  padding: 9px 22px; border-radius: 999px;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--accent-2) 35%, var(--line));
  transition: border-color .25s var(--ease-soft), transform .25s var(--ease-soft),
              box-shadow .25s var(--ease-soft);
}
.lp-contact-link:hover {
  border-color: var(--accent-2); transform: translateY(-1px);
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-2) 18%, transparent);
}

.lp-foot {
  margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-faint);
}
.lp-foot p { margin: 0; }

/* a pure tease, styled to look like an aside rather than a call to
   action — Uranus's own color (--arch-11), used nowhere else on this
   page, so it reads as slightly out of place on purpose */
.lp-uranian {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 12px;
  font: inherit; font-size: 11.5px; font-weight: 600; cursor: pointer;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: none; border: 1px dashed color-mix(in srgb, var(--arch-11) 45%, var(--line));
  color: color-mix(in srgb, var(--arch-11) 70%, var(--ink-faint));
  transition: color .15s var(--ease-soft), border-color .15s var(--ease-soft),
    background .15s var(--ease-soft);
}
.lp-uranian:hover, .lp-uranian.is-open {
  color: var(--arch-11); border-color: var(--arch-11); border-style: solid;
  background: color-mix(in srgb, var(--arch-11) 8%, transparent);
}
.lp-uranian-note {
  max-width: 46ch; margin: 10px 0 0; font-size: 12px; line-height: 1.6;
  font-style: italic; color: var(--ink-dim);
}
.lp-uranian-note[hidden] { display: none; }
