:root {
  --ink: #17120d;
  --paper: #f5ead8;
  --paper-2: #fff8ed;
  --jade: #0e6b55;
  --jade-dark: #073d33;
  --cinnabar: #a93d24;
  --gold: #c99b45;
  --mist: rgba(255, 248, 237, 0.72);
  --line: rgba(23, 18, 13, 0.13);
  --shadow: 0 28px 80px rgba(30, 21, 12, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 155, 69, 0.36), transparent 28%),
    radial-gradient(circle at 86% 2%, rgba(14, 107, 85, 0.22), transparent 30%),
    linear-gradient(135deg, #f8f0df 0%, #efe0c3 48%, #d9b777 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(23, 18, 13, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 18, 13, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.site-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--paper-2); background: var(--jade-dark); font-family: Cinzel, serif; }
.nav-links { display: flex; gap: 22px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 248, 237, 0.58); }
.nav-links a, .admin-link { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.92rem; }
.nav-cta { color: var(--paper-2); background: var(--ink); text-decoration: none; padding: 13px 18px; border-radius: 999px; font-weight: 800; }

.hero { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 44px; min-height: 680px; align-items: center; padding: 52px 0 72px; }
.eyebrow { margin: 0 0 14px; color: var(--cinnabar); text-transform: uppercase; font-weight: 900; font-size: 0.74rem; letter-spacing: 0.18em; }
h1, h2, h3 { font-family: Cinzel, serif; line-height: 0.98; margin: 0; }
h1 { font-size: clamp(3.1rem, 8vw, 7.5rem); letter-spacing: -0.07em; max-width: 840px; }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); letter-spacing: -0.055em; }
h3 { font-size: 1.8rem; letter-spacing: -0.03em; }
.hero-text { font-size: 1.14rem; line-height: 1.8; max-width: 660px; color: rgba(23, 18, 13, 0.72); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.button { border: 0; border-radius: 999px; padding: 14px 21px; font-weight: 900; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: transform 0.2s ease, box-shadow 0.2s ease; font-family: Manrope, sans-serif; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--jade-dark); color: var(--paper-2); box-shadow: 0 14px 34px rgba(7, 61, 51, 0.28); }
.ghost { background: rgba(255, 248, 237, 0.64); color: var(--ink); border: 1px solid var(--line); }
.soft { background: rgba(201,155,69,0.16); color: var(--ink); border: 1px solid rgba(201,155,69,0.35); }
.gold { background: var(--gold); color: var(--ink); }
.full { width: 100%; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span { border: 1px solid var(--line); background: rgba(255,255,255,0.28); border-radius: 999px; padding: 10px 13px; font-weight: 800; }

.oracle-card { position: relative; min-height: 540px; border-radius: 42px; padding: 34px; overflow: hidden; background: linear-gradient(160deg, var(--jade-dark), #0f6f59 48%, #11100b); color: var(--paper-2); box-shadow: var(--shadow); }
.oracle-card::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,248,237,0.24); border-radius: 32px; }
.moon { position: absolute; top: 76px; right: 76px; width: 110px; height: 110px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 90px rgba(201,155,69,0.62); }
.compass-ring { position: absolute; left: 50%; top: 52%; translate: -50% -50%; width: 330px; height: 330px; border: 1px solid rgba(255,248,237,0.34); border-radius: 50%; animation: spin 28s linear infinite; }
.compass-ring span { position: absolute; font-size: 2rem; font-weight: 800; }
.compass-ring span:nth-child(1) { left: 47%; top: -18px; }
.compass-ring span:nth-child(2) { right: -12px; top: 45%; }
.compass-ring span:nth-child(3) { left: 47%; bottom: -22px; }
.compass-ring span:nth-child(4) { left: -12px; top: 45%; }
.compass-ring span:nth-child(5) { left: 47%; top: 45%; }
.card-bottom { position: absolute; left: 34px; right: 34px; bottom: 34px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.card-bottom p { margin: 0; color: rgba(255,248,237,0.68); }
.card-bottom strong { font-family: Cinzel, serif; font-size: 2rem; }

.section { padding: 76px 0; }
.intro-grid, .split-panel, .booking { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 42px; align-items: start; }
.intro-grid > p, .panel-copy p { font-size: 1.12rem; line-height: 1.9; color: rgba(23,18,13,0.72); margin-top: 4px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.compact-heading { align-items: center; margin-bottom: 10px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 320px; border: 1px solid var(--line); border-radius: 30px; padding: 26px; background: rgba(255, 248, 237, 0.62); backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: space-between; }
.service-card strong { font-size: 2.1rem; font-family: Cinzel, serif; color: var(--jade-dark); }
.service-card p { line-height: 1.65; color: rgba(23,18,13,0.7); }
.service-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.steps { display: grid; gap: 14px; }
.steps article { padding: 22px; border-radius: 26px; background: rgba(255,248,237,0.62); border: 1px solid var(--line); }
.steps span { color: var(--cinnabar); font-weight: 900; }
.steps strong { display: block; margin: 8px 0 4px; font-size: 1.1rem; }
.steps p { margin: 0; color: rgba(23,18,13,0.68); }
.booking-card, .insight-box, .editor-card, .table-card { background: rgba(255,248,237,0.76); border: 1px solid var(--line); border-radius: 34px; padding: 30px; box-shadow: 0 18px 60px rgba(30,21,12,0.1); }
.booking-form, .admin-form { display: grid; gap: 15px; margin-top: 24px; }
.mini-form { display: grid; gap: 12px; margin: 16px 0; }
.mini-form label { font-size: 0.9rem; }
label { display: grid; gap: 8px; font-weight: 900; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 17px; padding: 14px 15px; font: inherit; background: rgba(255,255,255,0.56); color: var(--ink); }
textarea { resize: vertical; }
.consent-check { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; font-size: 0.92rem; line-height: 1.55; color: rgba(23,18,13,0.72); }
.consent-check input { width: auto; margin-top: 4px; }
.consent-check a { color: var(--jade-dark); font-weight: 900; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin: 0; color: rgba(23,18,13,0.55); font-size: 0.9rem; }
.insight-box { position: sticky; top: 110px; }
.zodiac-tool { display: flex; gap: 10px; margin: 24px 0; }
.toast { position: fixed; left: 50%; bottom: 24px; translate: -50% 20px; opacity: 0; pointer-events: none; background: var(--ink); color: var(--paper-2); padding: 13px 18px; border-radius: 999px; font-weight: 800; transition: 0.25s ease; z-index: 50; }
.toast.show { opacity: 1; translate: -50% 0; }

.admin-body { background: #efe1c7; }
.admin-layout { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 24px; background: var(--jade-dark); color: var(--paper-2); display: flex; flex-direction: column; gap: 12px; }
.admin-sidebar .brand, .admin-sidebar .admin-link { color: var(--paper-2); margin-bottom: 18px; }
.admin-sidebar .brand-mark { background: var(--gold); color: var(--ink); }
.tab { text-align: left; border: 1px solid rgba(255,248,237,0.16); background: transparent; color: var(--paper-2); padding: 14px 16px; border-radius: 18px; font-weight: 900; cursor: pointer; }
.tab.active { background: var(--gold); color: var(--ink); }
.admin-link { margin-top: auto; padding: 14px 16px; border: 1px solid rgba(255,248,237,0.18); border-radius: 18px; }
.admin-main { padding: 36px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 26px; }
.admin-panel { display: none; }
.admin-panel.active { display: grid; gap: 22px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stats-grid article { background: rgba(255,248,237,0.74); border: 1px solid var(--line); border-radius: 30px; padding: 26px; }
.stats-grid span { font-family: Cinzel, serif; font-size: 3.4rem; font-weight: 700; }
.stats-grid p { margin: 8px 0 0; color: rgba(23,18,13,0.65); font-weight: 800; }
.admin-list { display: grid; gap: 12px; margin-top: 18px; }
.list-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,0.4); }
.list-row h3 { font-family: Manrope, sans-serif; font-size: 1rem; letter-spacing: 0; margin-bottom: 6px; }
.list-row p { margin: 0; color: rgba(23,18,13,0.66); }
.log-row h3 { color: var(--jade-dark); }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.small-btn { border: 0; border-radius: 999px; padding: 10px 12px; font-weight: 900; cursor: pointer; background: var(--ink); color: var(--paper-2); }
.small-btn.delete { background: var(--cinnabar); }
.status-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.status-overview {
  margin-top: 10px;
}
.status-overview-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(155deg, rgba(7, 61, 51, 0.9), rgba(14, 107, 85, 0.8));
  color: var(--paper-2);
  box-shadow: 0 18px 36px rgba(7, 61, 51, 0.14);
}
.status-overview-card .eyebrow {
  color: rgba(255, 248, 237, 0.76);
  margin-bottom: 10px;
}
.status-overview-card h3 {
  font-family: Cinzel, serif;
  font-size: 2rem;
  line-height: 1.02;
  margin: 0;
}
.status-overview-card p {
  margin: 14px 0 0;
  color: rgba(255, 248, 237, 0.82);
  line-height: 1.65;
}
.status-overview-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}
.status-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.status-kpis article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.14);
  border: 1px solid rgba(255, 248, 237, 0.18);
}
.status-kpis strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
}
.status-kpis span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 0.88rem;
}
.status-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.status-chip-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.14);
  border: 1px solid rgba(255, 248, 237, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}
.status-card { border: 1px solid var(--line); border-radius: 22px; padding: 18px; background: rgba(255,255,255,0.44); }
.status-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.status-card h3 { margin: 0; font-family: Manrope, sans-serif; font-size: 1rem; letter-spacing: 0; }
.status-card p { margin: 0; color: rgba(23,18,13,0.66); line-height: 1.6; }
.status-pill { border-radius: 999px; padding: 6px 10px; font-size: 0.75rem; font-weight: 900; white-space: nowrap; }
.status-pill.ok { background: rgba(36, 105, 70, 0.14); color: #1f6846; }
.status-pill.warn { background: rgba(162, 70, 52, 0.13); color: var(--cinnabar); }
.checklist-card { grid-column: 1 / -1; }
.check-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.check-list li { display: flex; align-items: center; gap: 8px; color: rgba(23,18,13,0.72); font-weight: 700; }
.check-list span { border-radius: 999px; padding: 4px 8px; font-size: 0.7rem; font-weight: 900; }
.check-list .ok span { background: rgba(36, 105, 70, 0.14); color: #1f6846; }
.check-list .warn span { background: rgba(162, 70, 52, 0.13); color: var(--cinnabar); }
.status-runbook {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.runbook-card {
  min-height: 100%;
}
.runbook-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(23,18,13,0.72);
  display: grid;
  gap: 8px;
  line-height: 1.6;
}
.runbook-list.ordered {
  padding-left: 22px;
}
.runbook-list li {
  margin: 0;
}
.status-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.status-action-buttons {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.status-action-buttons .button {
  width: 100%;
}
.status-artifact-history {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.preflight-output {
  margin-top: 18px;
}
.preflight-card pre {
  margin: 12px 0 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(23, 18, 13, 0.06);
  color: var(--ink);
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.55;
}
.artifact-list-card p {
  margin: 8px 0 0;
}
.inline-link {
  color: var(--jade-dark);
  font-weight: 800;
  text-decoration: none;
}
.inline-link:hover {
  text-decoration: underline;
}
.chart-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.pillar-card { border: 1px solid var(--line); border-radius: 18px; padding: 14px; background: rgba(255,255,255,0.44); }
.pillar-card h3 { margin: 0 0 8px; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(23,18,13,0.54); }
.pillar-card strong { display: block; font-family: Cinzel, serif; font-size: 1.5rem; margin-bottom: 6px; }
.pillar-card p { margin: 0; color: rgba(23,18,13,0.68); font-size: 0.92rem; line-height: 1.5; }
.chart-meta { margin-top: 14px; display: grid; gap: 10px; }
.chart-meta article { border-top: 1px solid var(--line); padding-top: 10px; }
.chart-meta b { display: block; margin-bottom: 4px; }
.chart-subsection {
  margin-top: 18px;
}
.chart-subsection h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: Manrope, sans-serif;
  letter-spacing: 0;
}

.reveal { animation: rise 0.75s ease both; }
.delay-1 { animation-delay: 0.12s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { rotate: 360deg; } }

@media (max-width: 880px) {
  .nav { position: static; flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; justify-content: space-between; overflow-x: auto; }
  .nav-cta { display: none; }
  .hero, .intro-grid, .split-panel, .booking, .admin-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 28px; }
  .oracle-card { min-height: 420px; }
  .service-grid, .stats-grid { grid-template-columns: 1fr; }
  .status-grid, .status-runbook, .status-kpis, .check-list, .status-quick-grid, .status-artifact-history { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .insight-box { position: static; }
  .admin-sidebar { position: static; height: auto; }
  .admin-main { padding: 22px; }
  .admin-top { align-items: start; flex-direction: column; }
}

/* Calmer visual pass: preserve the mystical brand while making hierarchy easier to scan. */
:root {
  --line: rgba(23, 18, 13, 0.1);
  --shadow: 0 22px 54px rgba(30, 21, 12, 0.14);
}

body {
  background:
    radial-gradient(circle at 14% 0%, rgba(201, 155, 69, 0.22), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(14, 107, 85, 0.14), transparent 28%),
    linear-gradient(145deg, #f8f0df 0%, #efe1c7 58%, #e2c992 100%);
}

body::before {
  opacity: 0.28;
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
}

.site-shell { width: min(1120px, calc(100% - 40px)); }
.nav { padding: 18px 0; }
.nav-links { gap: 18px; padding: 10px 16px; background: rgba(255, 248, 237, 0.76); }
.nav-cta, .button { padding: 12px 18px; }

.hero {
  grid-template-columns: minmax(0, 1.08fr) 420px;
  gap: 56px;
  min-height: 610px;
  padding: 42px 0 58px;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 5.9rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 { font-size: 1.55rem; line-height: 1.12; }
.hero-text { max-width: 600px; font-size: 1.05rem; line-height: 1.72; }
.hero-actions { margin: 26px 0 22px; }
.trust-row { gap: 8px; }
.trust-row span { padding: 8px 12px; font-size: 0.88rem; background: rgba(255, 248, 237, 0.5); }

.oracle-card {
  min-height: 470px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: linear-gradient(155deg, #073d33, #0e6b55 54%, #16130d);
}

.oracle-card::before { inset: 22px; border-radius: 26px; opacity: 0.75; }
.moon { top: 68px; right: 68px; width: 88px; height: 88px; box-shadow: 0 0 62px rgba(201,155,69,0.42); }
.compass-ring { width: 270px; height: 270px; opacity: 0.74; animation-duration: 42s; }
.compass-ring span { font-size: 1.55rem; }
.card-bottom strong { font-size: 1.62rem; }

.section { padding: 54px 0; }
.intro-grid, .split-panel, .booking { gap: 34px; }
.intro-grid > p, .panel-copy p { font-size: 1.03rem; line-height: 1.76; max-width: 680px; }
.section-heading { display: block; margin-bottom: 22px; }
.service-grid { gap: 16px; }
.service-card {
  min-height: 270px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 248, 237, 0.76);
  box-shadow: 0 14px 34px rgba(30, 21, 12, 0.07);
}
.service-card p { line-height: 1.56; }
.service-card strong { font-size: 1.7rem; }
.steps { gap: 12px; }
.steps article { padding: 20px; border-radius: 22px; background: rgba(255,248,237,0.72); }
.booking-card, .insight-box, .editor-card, .table-card {
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,248,237,0.82);
  box-shadow: 0 16px 42px rgba(30,21,12,0.08);
}
.booking-guide {
  margin-top: 18px;
}
#planGuide {
  margin: 4px 0 0;
}
.readiness-section {
  padding-top: 12px;
}
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.compare-table {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.78);
  box-shadow: 0 12px 28px rgba(30, 21, 12, 0.06);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}
.compare-row > div {
  color: rgba(23, 18, 13, 0.76);
  line-height: 1.5;
}
.compare-head {
  background: rgba(14, 107, 85, 0.08);
}
.compare-head > div {
  font-weight: 900;
  color: var(--ink);
}
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}
.proof-grid article,
.faq-grid article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.78);
  box-shadow: 0 12px 28px rgba(30, 21, 12, 0.06);
}
.proof-grid strong,
.faq-grid strong {
  display: block;
  margin-bottom: 8px;
}
.proof-grid p,
.faq-grid p {
  margin: 0;
  color: rgba(23, 18, 13, 0.72);
  line-height: 1.65;
}
.readiness-grid article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.78);
  box-shadow: 0 12px 28px rgba(30, 21, 12, 0.06);
}
.readiness-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}
.readiness-grid p {
  margin: 0;
  color: rgba(23, 18, 13, 0.7);
  line-height: 1.62;
}

input, textarea, select { border-radius: 14px; background: rgba(255,255,255,0.68); }
.insight-box { top: 92px; }
.admin-main { max-width: 1120px; }
.stats-grid article, .list-row { background: rgba(255,248,237,0.78); }

@media (max-width: 880px) {
  .site-shell { width: min(100% - 28px, 1120px); }
  .hero { gap: 28px; padding: 28px 0 42px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.6rem); }
  .oracle-card { min-height: 360px; }
  .compass-ring { width: 220px; height: 220px; }
  .section { padding: 42px 0; }
}

/* Subscription product redesign */
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  gap: 48px;
  align-items: center;
  padding: 58px 0 54px;
}

.product-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
}

.forecast-preview {
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(160deg, #073d33, #0e6b55 58%, #17120d);
  color: var(--paper-2);
  box-shadow: var(--shadow);
}

.forecast-preview h2 { font-size: clamp(2rem, 3vw, 3rem); }
.forecast-lines { display: grid; gap: 12px; margin-top: 24px; }
.forecast-lines article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.08);
}
.forecast-lines span { grid-row: span 2; color: var(--gold); font-family: Cinzel, serif; font-weight: 800; font-size: 1.2rem; }
.forecast-lines strong { display: block; }
.forecast-lines p { margin: 0; color: rgba(255, 248, 237, 0.72); line-height: 1.5; }

.clear-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 34px; align-items: start; }
.section-kicker { max-width: 680px; }
.section-kicker.centered { text-align: center; margin: 0 auto 26px; }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.method-grid article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.8);
  box-shadow: 0 12px 28px rgba(30, 21, 12, 0.06);
}
.method-grid span { color: var(--cinnabar); font-weight: 900; }
.method-grid h3 { margin: 10px 0; font-size: 1.35rem; }
.method-grid p { margin: 0; color: rgba(23, 18, 13, 0.68); line-height: 1.62; }

.daily-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 248, 237, 0.62);
}
.daily-panel > div > p:not(.eyebrow) { color: rgba(23,18,13,0.68); line-height: 1.72; max-width: 660px; }
.daily-card { border-radius: 26px; padding: 24px; background: var(--paper-2); border: 1px solid var(--line); }
.daily-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-weight: 900; color: var(--cinnabar); }
.daily-header strong { color: var(--ink); font-family: Cinzel, serif; font-size: 1.6rem; }
dl { margin: 0; display: grid; gap: 10px; }
dl div { display: grid; grid-template-columns: 108px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
dt { font-weight: 900; } dd { margin: 0; color: rgba(23,18,13,0.68); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.82);
  box-shadow: 0 14px 34px rgba(30, 21, 12, 0.07);
}
.price-card.featured { background: #fff8ed; border-color: rgba(7, 61, 51, 0.3); transform: translateY(-8px); }
.plan-name { margin: 0; color: var(--cinnabar); font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; }
.price-card h3 { font-size: 2.55rem; }
.price-card h3 span { font-family: Manrope, sans-serif; font-size: 1rem; letter-spacing: 0; color: rgba(23,18,13,0.58); }
.plan-sub { margin: 0; color: rgba(23,18,13,0.65); }
.price-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; flex: 1; }
.price-card li { position: relative; padding-left: 22px; line-height: 1.55; color: rgba(23,18,13,0.74); }
.price-card li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 8px; height: 8px; border-radius: 50%; background: var(--jade); }

@media (max-width: 880px) {
  .product-hero, .clear-grid, .daily-panel, .pricing-grid { grid-template-columns: 1fr; }
  .product-hero { gap: 28px; padding: 34px 0 42px; }
  .method-grid { grid-template-columns: 1fr; }
  .daily-panel { padding: 22px; }
  .price-card.featured { transform: none; }
  dl div { grid-template-columns: 1fr; gap: 4px; }
}

/* Refined hero scale and celestial-stem motif */
.product-hero {
  grid-template-columns: minmax(0, 0.98fr) 440px;
  gap: 54px;
}

.product-hero h1 {
  max-width: 600px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.product-hero .hero-text {
  max-width: 520px;
  font-size: 0.98rem;
}

.forecast-preview {
  position: relative;
  min-height: 620px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.forecast-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 24px;
  pointer-events: none;
}

.stems-orbit {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 4px auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.stems-orbit::before,
.stems-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 237, 0.18);
}

.stems-orbit::before { inset: 8px; }
.stems-orbit::after { inset: 58px; border-color: rgba(201, 155, 69, 0.3); }
.orbit-ring { position: absolute; inset: 0; border-radius: 50%; animation: spin 48s linear infinite; }
.orbit-branches { inset: 38px; animation-direction: reverse; animation-duration: 64s; opacity: 0.72; }
.orbit-ring span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  margin-left: -27px;
  margin-top: -10px;
  color: rgba(255, 248, 237, 0.78);
  font-family: Cinzel, serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  transform-origin: 27px 10px;
}
.orbit-stems span:nth-child(1) { transform: rotate(0deg) translateY(-168px) rotate(0deg); }
.orbit-stems span:nth-child(2) { transform: rotate(36deg) translateY(-168px) rotate(-36deg); }
.orbit-stems span:nth-child(3) { transform: rotate(72deg) translateY(-168px) rotate(-72deg); }
.orbit-stems span:nth-child(4) { transform: rotate(108deg) translateY(-168px) rotate(-108deg); }
.orbit-stems span:nth-child(5) { transform: rotate(144deg) translateY(-168px) rotate(-144deg); }
.orbit-stems span:nth-child(6) { transform: rotate(180deg) translateY(-168px) rotate(-180deg); }
.orbit-stems span:nth-child(7) { transform: rotate(216deg) translateY(-168px) rotate(-216deg); }
.orbit-stems span:nth-child(8) { transform: rotate(252deg) translateY(-168px) rotate(-252deg); }
.orbit-stems span:nth-child(9) { transform: rotate(288deg) translateY(-168px) rotate(-288deg); }
.orbit-stems span:nth-child(10) { transform: rotate(324deg) translateY(-168px) rotate(-324deg); }
.orbit-branches span:nth-child(1) { transform: rotate(0deg) translateY(-120px) rotate(0deg); }
.orbit-branches span:nth-child(2) { transform: rotate(30deg) translateY(-120px) rotate(-30deg); }
.orbit-branches span:nth-child(3) { transform: rotate(60deg) translateY(-120px) rotate(-60deg); }
.orbit-branches span:nth-child(4) { transform: rotate(90deg) translateY(-120px) rotate(-90deg); }
.orbit-branches span:nth-child(5) { transform: rotate(120deg) translateY(-120px) rotate(-120deg); }
.orbit-branches span:nth-child(6) { transform: rotate(150deg) translateY(-120px) rotate(-150deg); }
.orbit-branches span:nth-child(7) { transform: rotate(180deg) translateY(-120px) rotate(-180deg); }
.orbit-branches span:nth-child(8) { transform: rotate(210deg) translateY(-120px) rotate(-210deg); }
.orbit-branches span:nth-child(9) { transform: rotate(240deg) translateY(-120px) rotate(-240deg); }
.orbit-branches span:nth-child(10) { transform: rotate(270deg) translateY(-120px) rotate(-270deg); }
.orbit-branches span:nth-child(11) { transform: rotate(300deg) translateY(-120px) rotate(-300deg); }
.orbit-branches span:nth-child(12) { transform: rotate(330deg) translateY(-120px) rotate(-330deg); }
.orbit-core {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle, rgba(201,155,69,0.22), rgba(255,248,237,0.06));
  border: 1px solid rgba(201,155,69,0.42);
  color: var(--paper-2);
  text-align: center;
  z-index: 2;
}
.orbit-core span { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.68rem; }
.orbit-core strong { font-family: Cinzel, serif; font-size: 1.42rem; }
.forecast-preview h2 { font-size: clamp(1.75rem, 2.3vw, 2.45rem); margin-bottom: 6px; }
.forecast-lines.compact { gap: 10px; margin-top: 18px; }
.forecast-lines.compact article { padding: 14px 16px; }

@media (max-width: 880px) {
  .product-hero h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .forecast-preview { min-height: 540px; }
  .stems-orbit { width: min(100%, 310px); }
  .orbit-stems span:nth-child(n) { transform: none; }
  .orbit-branches span:nth-child(n) { transform: none; }
  .orbit-ring span { display: none; }
  .orbit-ring { border: 1px dashed rgba(255,248,237,0.2); }
}

/* Product maturity pass: flow, dashboard, and cleaner navigation */
.nav-links a[href="admin.html"] { display: none; }
.nav-links { gap: 20px; }

.process-strip {
  padding-top: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.process-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.78);
  box-shadow: 0 14px 34px rgba(30, 21, 12, 0.06);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(169, 61, 36, 0.1);
  color: var(--cinnabar);
  font-weight: 900;
}

.process-grid strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.process-grid p {
  margin: 0;
  line-height: 1.62;
  color: rgba(23, 18, 13, 0.66);
}

.daily-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
  background: linear-gradient(145deg, rgba(255,248,237,0.72), rgba(255,248,237,0.42));
}

.daily-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(23, 18, 13, 0.68);
  line-height: 1.72;
}

.daily-product-card {
  border-radius: 30px;
  padding: 22px;
  background: #fff8ed;
  border: 1px solid rgba(23, 18, 13, 0.09);
  box-shadow: 0 24px 60px rgba(30, 21, 12, 0.12);
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.app-topbar span { color: var(--cinnabar); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
.app-topbar strong { font-family: Cinzel, serif; font-size: 1.6rem; }

.score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.score-row div {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(14, 107, 85, 0.08);
  border: 1px solid rgba(14, 107, 85, 0.1);
}

.score-row small {
  display: block;
  color: rgba(23, 18, 13, 0.56);
  font-weight: 900;
  margin-bottom: 8px;
}

.score-row strong {
  display: block;
  font-family: Cinzel, serif;
  font-size: 2rem;
  color: var(--jade-dark);
  line-height: 1;
}

.score-row span {
  display: block;
  color: rgba(23, 18, 13, 0.6);
  font-size: 0.88rem;
  margin-top: 4px;
}

.guidance-list {
  display: grid;
  gap: 10px;
}

.guidance-list article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(245, 234, 216, 0.72);
  border: 1px solid var(--line);
}

.guidance-list b { display: block; margin-bottom: 6px; }
.guidance-list p { margin: 0; color: rgba(23, 18, 13, 0.68); line-height: 1.5; }

.locked-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(201, 155, 69, 0.16);
  color: rgba(23, 18, 13, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.locked-note span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--jade-dark);
  color: var(--paper-2);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.price-card.featured::before {
  content: "Most practical";
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(201, 155, 69, 0.22);
  color: var(--jade-dark);
  font-weight: 900;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 880px) {
  .process-grid, .daily-panel, .score-row { grid-template-columns: 1fr; }
  .daily-panel { padding: 20px; }
  .daily-product-card { padding: 18px; }
}

/* Alignment pass: make hero and profile sections feel intentionally balanced. */
.product-hero {
  align-items: start;
  padding-top: 64px;
}

.forecast-preview {
  justify-self: end;
  width: 100%;
  max-width: 440px;
  min-height: 600px;
}

.stems-orbit {
  margin-top: 0;
  margin-bottom: 30px;
}

.booking {
  grid-template-columns: minmax(0, 720px) 360px;
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.booking-card {
  width: 100%;
}

.booking-card h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.insight-box {
  justify-self: stretch;
  max-width: 360px;
  padding: 24px;
  border-radius: 26px;
  position: sticky;
  top: 96px;
}

.insight-box h3 {
  font-size: 1.45rem;
  line-height: 1.12;
}

.zodiac-tool {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0 18px;
}

.zodiac-tool .button,
.zodiac-tool input {
  width: 100%;
}

#zodiacResult {
  margin: 0;
  color: rgba(23, 18, 13, 0.66);
  line-height: 1.58;
}

@media (max-width: 880px) {
  .product-hero { align-items: stretch; padding-top: 34px; }
  .forecast-preview { max-width: none; min-height: 520px; justify-self: stretch; }
  .booking { grid-template-columns: 1fr; gap: 18px; }
  .insight-box { max-width: none; position: static; }
}

/* Compact the hero oracle card so it reads as a motif, not a tall sidebar. */
.product-hero {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
}

.forecast-preview {
  max-width: 390px;
  min-height: 0;
  height: auto;
  padding: 22px;
  border-radius: 30px;
}

.forecast-preview::before {
  inset: 14px;
  border-radius: 22px;
}

.stems-orbit {
  width: min(100%, 285px);
  margin-bottom: 18px;
}

.stems-orbit::before { inset: 6px; }
.stems-orbit::after { inset: 46px; }
.orbit-core { width: 104px; height: 104px; }
.orbit-core span { font-size: 0.58rem; }
.orbit-core strong { font-size: 1.08rem; }
.orbit-ring span { font-size: 0.62rem; }
.orbit-branches { inset: 30px; }
.orbit-stems span:nth-child(1) { transform: rotate(0deg) translateY(-134px) rotate(0deg); }
.orbit-stems span:nth-child(2) { transform: rotate(36deg) translateY(-134px) rotate(-36deg); }
.orbit-stems span:nth-child(3) { transform: rotate(72deg) translateY(-134px) rotate(-72deg); }
.orbit-stems span:nth-child(4) { transform: rotate(108deg) translateY(-134px) rotate(-108deg); }
.orbit-stems span:nth-child(5) { transform: rotate(144deg) translateY(-134px) rotate(-144deg); }
.orbit-stems span:nth-child(6) { transform: rotate(180deg) translateY(-134px) rotate(-180deg); }
.orbit-stems span:nth-child(7) { transform: rotate(216deg) translateY(-134px) rotate(-216deg); }
.orbit-stems span:nth-child(8) { transform: rotate(252deg) translateY(-134px) rotate(-252deg); }
.orbit-stems span:nth-child(9) { transform: rotate(288deg) translateY(-134px) rotate(-288deg); }
.orbit-stems span:nth-child(10) { transform: rotate(324deg) translateY(-134px) rotate(-324deg); }
.orbit-branches span:nth-child(1) { transform: rotate(0deg) translateY(-96px) rotate(0deg); }
.orbit-branches span:nth-child(2) { transform: rotate(30deg) translateY(-96px) rotate(-30deg); }
.orbit-branches span:nth-child(3) { transform: rotate(60deg) translateY(-96px) rotate(-60deg); }
.orbit-branches span:nth-child(4) { transform: rotate(90deg) translateY(-96px) rotate(-90deg); }
.orbit-branches span:nth-child(5) { transform: rotate(120deg) translateY(-96px) rotate(-120deg); }
.orbit-branches span:nth-child(6) { transform: rotate(150deg) translateY(-96px) rotate(-150deg); }
.orbit-branches span:nth-child(7) { transform: rotate(180deg) translateY(-96px) rotate(-180deg); }
.orbit-branches span:nth-child(8) { transform: rotate(210deg) translateY(-96px) rotate(-210deg); }
.orbit-branches span:nth-child(9) { transform: rotate(240deg) translateY(-96px) rotate(-240deg); }
.orbit-branches span:nth-child(10) { transform: rotate(270deg) translateY(-96px) rotate(-270deg); }
.orbit-branches span:nth-child(11) { transform: rotate(300deg) translateY(-96px) rotate(-300deg); }
.orbit-branches span:nth-child(12) { transform: rotate(330deg) translateY(-96px) rotate(-330deg); }

.forecast-preview .eyebrow { margin-bottom: 10px; }
.forecast-preview h2 { font-size: clamp(1.45rem, 2vw, 1.95rem); }
.forecast-lines.compact { margin-top: 14px; }
.forecast-lines.compact article {
  grid-template-columns: 34px 1fr;
  padding: 12px 14px;
  border-radius: 16px;
}
.forecast-lines.compact span { font-size: 1rem; }
.forecast-lines.compact p { font-size: 0.92rem; }

@media (max-width: 880px) {
  .product-hero { grid-template-columns: 1fr; }
  .forecast-preview { max-width: none; }
  .stems-orbit { width: min(100%, 270px); }
}

/* Member dashboard */
.soft { background: rgba(255, 248, 237, 0.68); color: var(--ink); border: 1px solid var(--line); }
.dashboard-shell { padding-bottom: 80px; }
.dashboard-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 54px 0 30px;
}
.dashboard-hero h1 { font-size: clamp(2.6rem, 5vw, 5rem); max-width: 860px; }
.member-badge {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--jade-dark);
  color: var(--paper-2);
  font-weight: 900;
  white-space: nowrap;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) 340px;
  gap: 16px;
  align-items: start;
}
.dash-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.82);
  box-shadow: 0 16px 42px rgba(30,21,12,0.08);
}
.main-reading { grid-column: 1; }
.profile-summary { grid-column: 2; }
.chart-card { grid-column: 1; }
.guidance-hub { grid-column: 2; }
.tools-card { grid-column: 1 / -1; }
.archive-card { grid-column: 1 / -1; }
.readiness-meter {
  margin-top: 12px;
}
.readiness-meter-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(23, 18, 13, 0.08);
  overflow: hidden;
}
.readiness-meter-bar span {
  display: block;
  height: 100%;
  width: 8%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--jade));
}
.readiness-meter small {
  display: block;
  margin-top: 8px;
  color: rgba(23, 18, 13, 0.6);
  font-weight: 800;
}
.profile-summary dl { margin: 18px 0; }
.profile-summary dl div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.profile-summary dt { font-weight: 900; }
.profile-summary dd { margin: 0; color: rgba(23,18,13,0.66); }
.guidance-hub h2,
.question-card h2,
.monthly-card h2,
.compatibility-card h2 { font-size: clamp(1.5rem, 2.2vw, 2.1rem); }
.access-list { display: grid; gap: 10px; margin-top: 18px; }
.access-list div {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(14, 107, 85, 0.08);
  border: 1px solid rgba(14, 107, 85, 0.1);
  font-weight: 800;
}
.compact-access {
  margin-top: 14px;
}
.guidance-stack {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.guidance-stack section {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.guidance-stack h3 {
  margin: 0 0 8px;
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}
.compact-output {
  gap: 8px;
  margin: 0;
}
.compact-output article {
  padding: 10px 12px;
  border-radius: 14px;
}
.tools-grid {
  display: block;
}
.tool-panel {
  min-height: 100%;
  display: none;
}
.tool-panel.active {
  display: block;
}
.archive-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}
.archive-panel {
  min-height: 100%;
}
.question-card p { color: rgba(23,18,13,0.68); line-height: 1.62; }
.tool-switcher {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tool-tab {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.tool-tab.active {
  background: var(--jade-dark);
  color: var(--paper-2);
  border-color: var(--jade-dark);
}
.chart-pane {
  display: none;
}
.chart-pane.active {
  display: block;
}

@media (max-width: 880px) {
  .compare-row { grid-template-columns: 1fr; }
  .proof-grid,
  .readiness-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .dashboard-hero, .dashboard-grid, .archive-grid { grid-template-columns: 1fr; }
  .dashboard-hero { align-items: start; }
  .member-badge { justify-self: start; }
  .main-reading,
  .profile-summary,
  .chart-card,
  .guidance-hub,
  .tools-card,
  .archive-card { grid-column: auto; }
}
.member-badge.secondary {
  background: rgba(255, 248, 237, 0.72);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* Footer and legal pages */
.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 42px 0 54px;
  color: rgba(23, 18, 13, 0.62);
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}
.legal-shell { max-width: 980px; }
.legal-page {
  padding: 72px 0;
}
.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 820px;
}
.legal-page p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(23, 18, 13, 0.7);
  font-size: 1.08rem;
  line-height: 1.78;
}
.legal-page .legal-version {
  font-size: 0.88rem;
  font-weight: 900;
  color: rgba(23, 18, 13, 0.52);
}

/* Accessibility pass */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-2);
  font-weight: 900;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 4px solid rgba(201, 155, 69, 0.95);
  outline-offset: 4px;
  border-radius: 10px;
}

main:focus { outline: none; }

.hero-text,
.daily-copy p:not(.eyebrow),
.method-grid p,
.process-grid p,
.guidance-list p,
.price-card li,
.form-note,
#zodiacResult,
.legal-page p:not(.eyebrow) {
  color: rgba(23, 18, 13, 0.78);
}

.forecast-lines p { color: rgba(255, 248, 237, 0.86); }

.field-hint {
  display: block;
  margin-top: -2px;
  color: rgba(23, 18, 13, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-alert {
  display: none;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(169, 61, 36, 0.12);
  border: 1px solid rgba(169, 61, 36, 0.3);
  color: #6f2113;
  font-weight: 800;
  line-height: 1.45;
}
.form-alert.show { display: block; }

input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: var(--cinnabar);
  box-shadow: 0 0 0 3px rgba(169, 61, 36, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .orbit-ring { animation: none !important; }
}
.login-page {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 60px 0;
}
.login-card {
  width: min(100%, 560px);
  padding: 32px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.84);
  box-shadow: 0 22px 54px rgba(30, 21, 12, 0.12);
}
.login-card h1 { font-size: clamp(3rem, 8vw, 5.4rem); }
.monthly-card p:not(.eyebrow) {
  color: rgba(23, 18, 13, 0.72);
  line-height: 1.62;
}
.report-output {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.report-output article {
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(245, 234, 216, 0.68);
}
.compatibility-card .report-output + .report-output {
  margin-top: 8px;
}
.report-output b { display: block; margin-bottom: 5px; }
.report-output p { margin: 0; color: rgba(23, 18, 13, 0.72); line-height: 1.55; }
.report-actions { display: grid; gap: 10px; }
.history-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.history-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.62);
}
.history-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14, 107, 85, 0.1);
  color: var(--jade-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.history-item strong {
  display: block;
  margin-bottom: 4px;
}
.history-item p,
.history-empty {
  margin: 0;
  color: rgba(23, 18, 13, 0.7);
  line-height: 1.55;
}
.history-item time {
  color: rgba(23, 18, 13, 0.52);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

@media print {
  body { background: white !important; color: #111 !important; }
  body::before, .nav, .site-footer, .toast, .button, .skip-link, .member-badge.secondary { display: none !important; }
  .site-shell { width: 100% !important; margin: 0 !important; }
  .dashboard-hero { padding: 0 0 20px !important; }
  .dashboard-grid { display: block !important; }
  .dash-card { box-shadow: none !important; break-inside: avoid; margin-bottom: 16px; border-color: #ddd !important; }
  .main-reading, .monthly-card { display: block !important; }
  .profile-summary, .tier-card, .question-card { display: none !important; }
  h1, h2, h3 { color: #111 !important; }
}
.member-content-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.member-content-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(14, 107, 85, 0.08);
}
.member-content-item strong { display: block; margin-bottom: 4px; }
.member-content-item p { margin: 0; color: rgba(23, 18, 13, 0.66); }
.member-content-item span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--jade-dark);
  color: var(--paper-2);
  font-size: 0.78rem;
  font-weight: 900;
}
.member-content-item.locked {
  background: rgba(245, 234, 216, 0.55);
  border-style: dashed;
}
.member-content-item.locked span {
  background: rgba(23, 18, 13, 0.12);
  color: var(--ink);
}
@media (max-width: 640px) {
  .member-content-item,
  .history-item { grid-template-columns: 1fr; }
  .member-content-item span { justify-self: start; }
  .history-item time { white-space: normal; }
}
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 880px) {
  .admin-actions { justify-content: flex-start; }
}
.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}
.metric-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.metric-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid var(--line);
}
.metric-list strong { font-size: 0.96rem; }
.metric-list span { font-weight: 900; color: var(--jade-dark); }
.metric-list small {
  grid-column: 1 / -1;
  color: rgba(23, 18, 13, 0.58);
  font-weight: 700;
}
@media (max-width: 880px) {
  .admin-dashboard-grid { grid-template-columns: 1fr; }
}

/* Stage two public growth pages */
.section-stack {
  display: grid;
  gap: 22px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 34px;
  align-items: start;
  padding: 52px 0 36px;
}

.subpage-hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
}

.subpage-summary-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255, 248, 237, 0.9), rgba(255, 248, 237, 0.72));
  box-shadow: 0 18px 40px rgba(30, 21, 12, 0.08);
}

.subpage-summary-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  margin-bottom: 12px;
}

.subpage-anchor-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subpage-anchor-row .jump-chip {
  padding: 10px 16px;
  min-height: auto;
  font-size: 0.92rem;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(30, 21, 12, 0.05);
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
}

.breadcrumb-trail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.6);
  color: rgba(23, 18, 13, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
}

.breadcrumb-trail a {
  color: var(--jade-dark);
  text-decoration: none;
}

.breadcrumb-trail span[aria-hidden="true"] {
  color: rgba(23, 18, 13, 0.4);
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(23, 18, 13, 0.76);
  line-height: 1.6;
}

.feature-list a {
  color: var(--jade-dark);
  text-decoration: none;
  font-weight: 800;
}

.feature-list a:hover {
  text-decoration: underline;
}

.cluster-grid a,
.calendar-grid a {
  color: var(--jade-dark);
  text-decoration: none;
  font-weight: 800;
}

.cluster-grid a:hover,
.calendar-grid a:hover {
  text-decoration: underline;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
}

.compact-list {
  gap: 8px;
  margin-top: 14px;
}

.hub-card-grid,
.essay-card-grid,
.tool-grid-matrix,
.case-grid,
.hub-entry-grid {
  display: grid;
  gap: 16px;
}

.hub-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hub-card,
.essay-card,
.tool-card,
.case-card,
.hub-entry-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.8);
  box-shadow: 0 14px 34px rgba(30, 21, 12, 0.06);
}

.hub-card,
.essay-card {
  display: flex;
  flex-direction: column;
}

.case-card {
  display: flex;
  flex-direction: column;
}

.hub-card p,
.essay-card p,
.tool-card p,
.case-card p,
.hub-entry-card p {
  color: rgba(23, 18, 13, 0.72);
  line-height: 1.64;
}

.hub-card h3,
.essay-card h3,
.tool-card h3,
.case-card h3,
.hub-entry-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.card-note,
.tool-note,
.case-meta {
  display: block;
  margin-top: 12px;
  color: rgba(23, 18, 13, 0.58);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 700;
}

.mini-grid.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mini-grid.two-up div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(14, 107, 85, 0.08);
  border: 1px solid rgba(14, 107, 85, 0.1);
}

.mini-grid.two-up strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.mini-grid.two-up span {
  display: block;
  color: rgba(23, 18, 13, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.knowledge-band,
.tool-roadmap-band,
.solar-strip,
.essay-band,
.hub-entry-section {
  border-radius: 32px;
  padding: 36px;
  background: linear-gradient(150deg, rgba(255, 248, 237, 0.78), rgba(255, 248, 237, 0.48));
  border: 1px solid rgba(23, 18, 13, 0.08);
  box-shadow: 0 18px 42px rgba(30, 21, 12, 0.07);
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cluster-grid article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
}

.cluster-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.essay-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-grid-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
}

.tool-card-top,
.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(23, 18, 13, 0.68);
  font-size: 0.88rem;
  font-weight: 800;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 107, 85, 0.16);
  color: var(--jade-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tool-badge.muted {
  background: rgba(201, 155, 69, 0.2);
  color: rgba(23, 18, 13, 0.72);
}

.tool-card.live {
  background: linear-gradient(150deg, rgba(255, 248, 237, 0.88), rgba(255, 248, 237, 0.74));
}

.tool-card.planned {
  background: linear-gradient(150deg, rgba(245, 234, 216, 0.8), rgba(245, 234, 216, 0.64));
}

.tool-card .button,
.hub-entry-card .button,
.hub-card .button,
.essay-card .button,
.case-card .button {
  margin-top: auto;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.calendar-grid article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.78);
  box-shadow: 0 12px 28px rgba(30, 21, 12, 0.06);
}

.calendar-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cinnabar);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.calendar-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.calendar-grid p {
  margin: 0;
  color: rgba(23, 18, 13, 0.68);
  line-height: 1.58;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: center;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(14, 107, 85, 0.09), rgba(255, 248, 237, 0.74));
}

.cta-strip h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.cta-strip p {
  margin: 0;
  color: rgba(23, 18, 13, 0.7);
  line-height: 1.64;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  min-height: 260px;
}

.hub-entry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-entry-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.hub-entry-card .eyebrow {
  margin-bottom: 10px;
}

.hub-entry-card:hover,
.hub-card:hover,
.tool-card:hover,
.case-card:hover,
.essay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(30, 21, 12, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .subpage-hero,
  .hub-card-grid,
  .essay-card-grid,
  .cluster-grid,
  .tool-grid-matrix,
  .case-grid,
  .hub-entry-grid,
  .calendar-grid,
  .process-grid.four-up,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .subpage-summary-card {
    max-width: none;
  }

  .mini-grid.two-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .subpage-hero {
    padding: 34px 0 24px;
    gap: 22px;
  }

  .subpage-anchor-row .jump-chip {
    width: 100%;
    text-align: center;
  }

  .knowledge-band,
  .tool-roadmap-band,
  .solar-strip,
  .essay-band,
  .hub-entry-section {
    padding: 24px;
    border-radius: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Free BaZi calculator */
.free-calculator-section {
  padding-top: 24px;
}

.free-calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: start;
}

.free-calculator-grid-wide {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.free-form-card,
.free-result-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.82);
  box-shadow: 0 18px 42px rgba(30, 21, 12, 0.08);
}

.free-form-card h3,
.free-result-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  line-height: 1.08;
}

.free-preview-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

#free-preview-start {
  scroll-margin-top: 80px;
}

#freeBaziForm {
  scroll-margin-top: 120px;
}

.free-inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.free-result-card {
  min-height: 100%;
  background: linear-gradient(155deg, rgba(255, 248, 237, 0.88), rgba(245, 234, 216, 0.74));
}

.free-result-card.empty {
  display: grid;
  align-content: start;
}

.free-result-placeholder,
.free-result-note {
  margin: 10px 0 0;
  color: rgba(23, 18, 13, 0.68);
  line-height: 1.68;
}

.free-result-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.free-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.free-pillar-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.free-pillar-card small {
  display: block;
  margin-bottom: 6px;
  color: rgba(23, 18, 13, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 900;
}

.free-pillar-card strong {
  display: block;
  font-family: Cinzel, serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.element-balance-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.element-balance-row {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 10px;
  align-items: center;
}

.element-balance-row span,
.element-balance-row strong {
  font-size: 0.9rem;
  font-weight: 800;
}

.element-balance-track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(23, 18, 13, 0.08);
}

.element-balance-track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--jade));
}

.free-cta-block {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(14, 107, 85, 0.08);
  border: 1px solid rgba(14, 107, 85, 0.12);
}

.free-cta-block > b {
  display: block;
  margin-bottom: 6px;
}

.free-cta-block p {
  margin: 0 0 14px;
  color: rgba(23, 18, 13, 0.72);
  line-height: 1.58;
}

.transition-note {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(14, 107, 85, 0.1);
  border: 1px solid rgba(14, 107, 85, 0.18);
  color: rgba(23, 18, 13, 0.82);
  font-weight: 800;
  line-height: 1.5;
}

.transition-note.show {
  display: block;
}

@media (max-width: 980px) {
  .free-calculator-grid,
  .free-calculator-grid-wide,
  .free-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .free-form-card,
  .free-result-card {
    padding: 22px;
    border-radius: 24px;
  }

  .free-inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .element-balance-row {
    grid-template-columns: 1fr;
  }
}


.free-next-step-actions {
  justify-content: flex-start;
}

.free-next-step-actions .button {
  flex: 1 1 220px;
}

.dashboard-grid.dashboard-grid-prioritized {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.saved-chart-card { grid-column: 1; }
.monthly-focus-card { grid-column: 2; }
.question-priority-card { grid-column: 1; }
.continue-card { grid-column: 2; }
.main-reading { grid-column: 1 / -1; }
.chart-card { grid-column: 1; }
.secondary-tools-card { grid-column: 2; }
.archive-card { grid-column: 1 / -1; }

.saved-chart-card h2,
.monthly-focus-card h2,
.question-priority-card h2,
.continue-card h2,
.secondary-tools-card h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

@media (max-width: 880px) {
  .dashboard-grid.dashboard-grid-prioritized {
    grid-template-columns: 1fr;
  }

  .saved-chart-card,
  .monthly-focus-card,
  .question-priority-card,
  .continue-card,
  .main-reading,
  .chart-card,
  .secondary-tools-card,
  .archive-card {
    grid-column: 1;
  }
}

/* Aurayne House homepage redesign restart */
body.aurayne-home {
  --aur-ivory: #f7f0e5;
  --aur-parchment: #efe2cf;
  --aur-paper: rgba(251, 246, 238, 0.8);
  --aur-charcoal: #201917;
  --aur-charcoal-soft: #2d2320;
  --aur-smoke: rgba(32, 25, 23, 0.66);
  --aur-line: rgba(176, 137, 84, 0.28);
  --aur-line-soft: rgba(176, 137, 84, 0.14);
  --aur-brass: #b08954;
  --aur-burgundy: #6d2d34;
  background:
    linear-gradient(90deg, #f9f3e9 0%, #f5ebde 44%, #dbd0c6 64%, #302624 100%);
  color: #201917;
}

body.aurayne-home::before {
  background-image:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.5), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(176, 137, 84, 0.08), transparent 18%),
    linear-gradient(rgba(133, 108, 84, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 108, 84, 0.028) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 72px 72px, 72px 72px;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.62) 56%, transparent 100%);
}

body.aurayne-home::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 88% 12%, rgba(0, 0, 0, 0.24), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 48%, rgba(22, 16, 15, 0.1) 74%, rgba(20, 16, 16, 0.2) 100%);
}

body.aurayne-home h1,
body.aurayne-home h2,
body.aurayne-home h3,
body.aurayne-home blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #201917;
}

body.aurayne-home .site-shell {
  width: min(1180px, calc(100% - 48px));
}

body.aurayne-home .nav {
  padding: 22px 0 18px;
  position: sticky;
  top: 0;
  z-index: 24;
  gap: 24px;
  backdrop-filter: blur(10px);
}

body.aurayne-home .nav::before {
  content: "";
  position: absolute;
  inset: 6px -10px 0;
  border-bottom: 1px solid rgba(176, 137, 84, 0.18);
  background: linear-gradient(180deg, rgba(249, 243, 233, 0.88), rgba(249, 243, 233, 0.56));
  z-index: -1;
}

body.aurayne-home .brand {
  gap: 0;
  font-weight: 600;
  letter-spacing: 0;
}

body.aurayne-home .brand-mark {
  display: none;
}

.aurayne-brand-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.aurayne-home .nav-links {
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.aurayne-home .nav-links a,
body.aurayne-home .admin-link,
.aurayne-private-link {
  color: rgba(32, 25, 23, 0.64);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.aurayne-home .nav-links a:hover,
body.aurayne-home .nav-links a:focus-visible,
.aurayne-private-link:hover,
.aurayne-private-link:focus-visible {
  color: #201917;
}

.aurayne-private-link {
  white-space: nowrap;
}

.aurayne-hidden-sync,
.aurayne-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.aurayne-hero {
  display: block;
  min-height: 620px;
  padding: 108px 0 118px;
  position: relative;
  background: transparent;
}

.aurayne-hero-copy {
  max-width: 680px;
  padding-right: 0;
}

.aurayne-kicker,
.aurayne-sample-kicker {
  margin: 0 0 14px;
  color: var(--aur-burgundy);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.aurayne-hero h1 {
  font-size: clamp(2.9rem, 5vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 520px;
}

body.aurayne-home .hero-text {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(32, 25, 23, 0.67);
  font-size: 1.06rem;
  line-height: 1.9;
}

.aurayne-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 34px 0 24px;
}

.button.aurayne-primary {
  background: var(--aur-burgundy);
  color: #fbf6ee;
  box-shadow: 0 14px 28px rgba(109, 45, 52, 0.18);
}

.button.aurayne-secondary {
  background: rgba(251, 246, 238, 0.64);
  color: #201917;
  border: 1px solid rgba(176, 137, 84, 0.16);
}

.aurayne-text-link {
  color: rgba(32, 25, 23, 0.74);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 137, 84, 0.3);
  padding-bottom: 3px;
}

.aurayne-text-link:hover,
.aurayne-text-link:focus-visible {
  color: #201917;
  border-bottom-color: rgba(176, 137, 84, 0.6);
}

.aurayne-beta-note {
  max-width: 360px;
  margin: 0;
  color: rgba(32, 25, 23, 0.44);
  font-size: 0.78rem;
  line-height: 1.64;
  letter-spacing: 0.01em;
}

/* Homepage hero is typography-led only for public beta. */
.aurayne-atmosphere,
.aurayne-atmosphere-field,
.aurayne-pattern-grid,
.aurayne-pattern-fade,
.aurayne-pattern-line,
.aurayne-pattern-arc,
.aurayne-pattern-wave,
.aurayne-line-one,
.aurayne-line-two,
.aurayne-wave-one,
.aurayne-arc-one {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.aurayne-atmosphere-field::before,
.aurayne-atmosphere-field::after {
  content: none !important;
}

.section.aurayne-reading-section {
  padding: 54px 0 64px;
}

.aurayne-section-heading {
  margin-bottom: 26px;
}

.aurayne-section-heading.compact {
  max-width: 760px;
}

.aurayne-section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.aurayne-section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.038em;
  max-width: 620px;
}

.aurayne-section-heading.centered h2,
.aurayne-section-heading.centered .hero-text {
  margin-inline: auto;
}

.aurayne-reading-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(176, 137, 84, 0.22);
}

.aurayne-reading-columns article {
  padding-right: 20px;
}

.aurayne-reading-columns article:not(:last-child) {
  border-right: 1px solid rgba(176, 137, 84, 0.14);
}

.aurayne-reading-columns h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.aurayne-reading-columns p,
.aurayne-method-grid p,
.aurayne-trust-layout p {
  margin: 0;
  color: rgba(32, 25, 23, 0.72);
  line-height: 1.72;
}

.aurayne-sample-band {
  padding: 32px 0 36px;
}

.aurayne-sample-frame {
  padding: 54px 38px;
  border-radius: 32px;
  border: 1px solid rgba(176, 137, 84, 0.22);
  background:
    linear-gradient(180deg, rgba(29, 23, 22, 0.98), rgba(22, 18, 18, 0.98));
  box-shadow: 0 22px 52px rgba(15, 12, 12, 0.18);
  text-align: center;
}

.aurayne-sample-frame::before {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, rgba(176, 137, 84, 0.78), transparent);
}

.aurayne-sample-kicker {
  color: rgba(250, 241, 229, 0.7);
}

.aurayne-sample-frame blockquote {
  margin: 0 auto;
  max-width: 720px;
  color: #f5ebdf;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.aurayne-sample-link {
  display: inline-block;
  margin-top: 24px;
  color: rgba(245, 235, 223, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 137, 84, 0.42);
  padding-bottom: 4px;
}

.aurayne-method-section,
.aurayne-trust-section,
.aurayne-entry-section,
.aurayne-booking-section {
  padding-top: 50px;
}

.aurayne-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

.aurayne-method-grid article {
  padding-top: 16px;
  border-top: 1px solid rgba(176, 137, 84, 0.16);
}

.aurayne-method-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.aurayne-trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(176, 137, 84, 0.18);
}

.aurayne-trust-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(176, 137, 84, 0.16);
  color: rgba(32, 25, 23, 0.62);
}

.aurayne-reading-grid {
  align-items: start;
}

body.aurayne-home .free-form-card,
body.aurayne-home .free-result-card,
body.aurayne-home .booking-card {
  border-radius: 28px;
  border: 1px solid rgba(176, 137, 84, 0.18);
  background: rgba(251, 246, 238, 0.82);
  box-shadow: 0 16px 34px rgba(35, 26, 22, 0.06);
}

body.aurayne-home .free-form-card h3,
body.aurayne-home .free-result-card h3,
body.aurayne-home .booking-card h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.02;
}

body.aurayne-home .form-note,
body.aurayne-home .free-result-placeholder,
body.aurayne-home .free-result-note,
body.aurayne-home .transition-note,
body.aurayne-home .report-output p {
  color: rgba(32, 25, 23, 0.62);
}

body.aurayne-home input,
body.aurayne-home textarea,
body.aurayne-home select {
  border-radius: 14px;
  border: 1px solid rgba(176, 137, 84, 0.16);
  background: rgba(255, 255, 255, 0.68);
}

body.aurayne-home .consent-check a,
body.aurayne-home .inline-link {
  color: var(--aur-burgundy);
}

.aurayne-footer {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  padding: 22px 0 42px;
  border-top: 1px solid rgba(176, 137, 84, 0.16);
}

.aurayne-footer-brand {
  margin-right: auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  body.aurayne-home .site-shell {
    width: min(100% - 32px, 1180px);
  }

  .aurayne-hero {
    min-height: auto;
    padding: 60px 0 78px;
  }

  .aurayne-hero-copy,
  body.aurayne-home .hero-text,
  .aurayne-hero h1 {
    max-width: 100%;
  }

  .aurayne-reading-columns,
  .aurayne-method-grid,
  .aurayne-trust-layout,
  .free-calculator-grid,
  .booking {
    grid-template-columns: 1fr;
  }

  .aurayne-reading-columns article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(176, 137, 84, 0.14);
    padding-bottom: 18px;
  }
}

@media (max-width: 880px) {
  body.aurayne-home .nav {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0 12px;
  }

  body.aurayne-home .nav::before {
    display: none;
  }

  body.aurayne-home .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

  .aurayne-private-link {
    display: none;
  }

  .aurayne-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .aurayne-sample-frame {
    padding: 42px 24px;
  }

  .aurayne-sample-frame blockquote {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }
}

body.aurayne-calculator-page {
  --aur-canvas: #f4ecdf;
  --aur-paper: rgba(255, 250, 244, 0.82);
  --aur-paper-strong: rgba(255, 250, 244, 0.94);
  --aur-ink: #2d2523;
  --aur-ink-soft: rgba(45, 37, 35, 0.74);
  --aur-line: rgba(164, 128, 90, 0.22);
  --aur-line-strong: rgba(164, 128, 90, 0.32);
  --aur-burgundy-deep: #783d43;
  --aur-burgundy-soft: #925159;
  --aur-brass: #ae8e61;
  min-height: 100vh;
  color: var(--aur-ink);
  background:
    radial-gradient(circle at top left, rgba(176, 142, 97, 0.16), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(120, 61, 67, 0.09), transparent 24%),
    linear-gradient(180deg, #f8f2e9 0%, var(--aur-canvas) 56%, #efe4d4 100%);
}

body.aurayne-calculator-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.24;
  mix-blend-mode: soft-light;
}

body.aurayne-calculator-page .site-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
}

body.aurayne-calculator-page .nav {
  position: sticky;
  top: 16px;
  z-index: 15;
  margin-top: 18px;
  padding: 18px 24px;
  border: 1px solid var(--aur-line);
  border-radius: 999px;
  background: rgba(250, 243, 234, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(37, 28, 24, 0.08);
}

body.aurayne-calculator-page .nav::before {
  display: none;
}

body.aurayne-calculator-page .brand {
  color: var(--aur-ink);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.aurayne-calculator-page .brand-mark {
  color: #fbf5ed;
  background: linear-gradient(135deg, #7f464c, #604148);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

body.aurayne-calculator-page .nav-links a,
body.aurayne-calculator-page .site-footer a,
body.aurayne-calculator-page .breadcrumb-trail a {
  color: rgba(45, 37, 35, 0.72);
}

body.aurayne-calculator-page .nav-cta,
body.aurayne-calculator-page .button.primary {
  color: #fff7f2;
  background: linear-gradient(135deg, var(--aur-burgundy-deep), var(--aur-burgundy-soft));
  border: 1px solid rgba(113, 55, 60, 0.36);
  box-shadow: 0 14px 28px rgba(120, 61, 67, 0.18);
}

body.aurayne-calculator-page .button.ghost {
  color: var(--aur-ink);
  border-color: var(--aur-line-strong);
  background: rgba(255, 250, 244, 0.64);
}

body.aurayne-calculator-page .hero-text,
body.aurayne-calculator-page .free-result-placeholder,
body.aurayne-calculator-page .form-note,
body.aurayne-calculator-page .field-hint,
body.aurayne-calculator-page .free-result-note,
body.aurayne-calculator-page .aurayne-method-strip p,
body.aurayne-calculator-page .aurayne-note-grid p,
body.aurayne-calculator-page .aurayne-transparency-grid p,
body.aurayne-calculator-page .aurayne-calculator-visual p {
  color: var(--aur-ink-soft);
}

.aurayne-calculator-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding: 42px 0 22px;
}

.aurayne-calculator-intro,
.aurayne-calculator-visual,
.aurayne-note-card,
.aurayne-soft-panel,
body.aurayne-calculator-page .free-form-card,
body.aurayne-calculator-page .free-result-card {
  border-radius: 30px;
  border: 1px solid var(--aur-line);
  background: var(--aur-paper);
  box-shadow: 0 22px 46px rgba(34, 27, 24, 0.07);
}

.aurayne-calculator-intro {
  position: relative;
  padding: 56px 46px;
  overflow: hidden;
}

.aurayne-calculator-intro::after {
  content: "";
  position: absolute;
  inset: auto -10% -24% 50%;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 142, 97, 0.14), transparent 68%);
  pointer-events: none;
}

.aurayne-calculator-intro h1 {
  margin: 0;
  max-width: 10.5ch;
  font-size: clamp(3.25rem, 5.8vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.aurayne-calculator-intro .hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.76;
}

.aurayne-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.aurayne-hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.aurayne-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(164, 128, 90, 0.18);
  background: rgba(255, 252, 248, 0.66);
  color: rgba(45, 37, 35, 0.68);
  font-size: 0.92rem;
}

.aurayne-calculator-visual {
  position: relative;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.56), transparent 26%),
    linear-gradient(180deg, rgba(253, 247, 240, 0.94), rgba(246, 236, 225, 0.9));
}

.aurayne-pattern-field {
  position: relative;
  min-height: 320px;
  background:
    radial-gradient(circle at 22% 24%, rgba(164, 128, 90, 0.18), transparent 14%),
    radial-gradient(circle at 76% 32%, rgba(120, 61, 67, 0.12), transparent 12%),
    radial-gradient(circle at 44% 68%, rgba(174, 142, 97, 0.16), transparent 16%);
}

.aurayne-pattern-field::before,
.aurayne-pattern-field::after {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border-radius: 50%;
  border: 1px solid rgba(164, 128, 90, 0.18);
  transform: rotate(-8deg);
}

.aurayne-pattern-field::after {
  inset: 28% 22%;
  transform: rotate(11deg);
  border-color: rgba(120, 61, 67, 0.14);
}

.aurayne-pattern-field .node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(120, 61, 67, 0.82);
  box-shadow: 0 0 0 10px rgba(120, 61, 67, 0.08);
}

.aurayne-pattern-field .node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(164, 128, 90, 0.34), transparent 70%);
}

.node-a { top: 20%; left: 18%; }
.node-a::after { transform: rotate(21deg); }
.node-b { top: 35%; right: 18%; }
.node-b::after { width: 130px; transform: rotate(154deg); }
.node-c { bottom: 24%; left: 30%; }
.node-c::after { width: 160px; transform: rotate(-26deg); }
.node-d { bottom: 18%; right: 28%; }
.node-d::after { width: 110px; transform: rotate(-152deg); }

.aurayne-visual-caption {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(164, 128, 90, 0.16);
  background: rgba(255, 251, 246, 0.54);
}

.aurayne-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.aurayne-visual-grid article {
  padding-top: 12px;
  border-top: 1px solid rgba(164, 128, 90, 0.14);
}

.aurayne-visual-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.aurayne-calculator-note-band {
  padding-top: 8px;
}

.aurayne-note-card {
  padding: 30px 34px 34px;
}

.aurayne-note-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  line-height: 1.03;
}

.aurayne-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.aurayne-note-grid article {
  padding-top: 18px;
  border-top: 1px solid rgba(164, 128, 90, 0.18);
}

.aurayne-note-grid strong,
.aurayne-method-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.aurayne-calculator-section {
  padding-top: 32px;
}

.aurayne-calculator-grid {
  gap: 28px;
  align-items: stretch;
}

body.aurayne-calculator-page .free-form-card,
body.aurayne-calculator-page .free-result-card {
  padding: 34px 32px;
}

body.aurayne-calculator-page .free-form-card h2,
body.aurayne-calculator-page .free-result-card h3 {
  font-size: clamp(1.95rem, 3vw, 2.55rem);
  line-height: 0.98;
}

body.aurayne-calculator-page .free-preview-form {
  gap: 18px;
  margin-top: 26px;
}

body.aurayne-calculator-page .free-preview-form label {
  gap: 8px;
  color: var(--aur-ink);
  font-weight: 700;
}

body.aurayne-calculator-page input,
body.aurayne-calculator-page select,
body.aurayne-calculator-page textarea {
  border-radius: 16px;
  border: 1px solid rgba(164, 128, 90, 0.2);
  background: var(--aur-paper-strong);
  color: var(--aur-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

body.aurayne-calculator-page input:focus,
body.aurayne-calculator-page select:focus,
body.aurayne-calculator-page textarea:focus {
  border-color: rgba(120, 61, 67, 0.42);
  box-shadow: 0 0 0 4px rgba(120, 61, 67, 0.12);
}

.aurayne-inline-actions {
  align-items: center;
}

body.aurayne-calculator-page .free-result-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(247, 237, 226, 0.86));
}

body.aurayne-calculator-page .free-result-card.empty {
  border-style: solid;
}

body.aurayne-calculator-page .free-result-placeholder {
  max-width: 34ch;
  line-height: 1.76;
}

body.aurayne-calculator-page .free-result-top {
  gap: 16px;
}

body.aurayne-calculator-page .free-result-top h3 {
  position: relative;
  color: transparent;
}

body.aurayne-calculator-page .free-result-top h3::after {
  content: "Your first reading preview";
  position: absolute;
  inset: 0;
  color: var(--aur-ink);
}

body.aurayne-calculator-page .free-result-note {
  position: relative;
  color: transparent;
  min-height: 1.6em;
}

body.aurayne-calculator-page .free-result-note::after {
  content: "A first structure, not a final reading.";
  position: absolute;
  inset: 0;
  color: var(--aur-ink-soft);
}

body.aurayne-calculator-page .tool-badge.muted {
  position: relative;
  color: transparent;
  background: rgba(164, 128, 90, 0.16);
  min-width: 118px;
}

body.aurayne-calculator-page .tool-badge.muted::after {
  content: "Preview layer";
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 37, 35, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.aurayne-calculator-page .report-output > article > b {
  color: rgba(45, 37, 35, 0.78);
}

.aurayne-method-section,
.aurayne-transparency-section {
  padding-top: 34px;
}

.aurayne-method-strip,
.aurayne-transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 22px;
}

.aurayne-method-strip article,
.aurayne-soft-panel {
  padding: 24px 24px 26px;
  border-radius: 26px;
  border: 1px solid var(--aur-line);
  background: rgba(255, 249, 241, 0.74);
}

.aurayne-transparency-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aurayne-soft-panel h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  line-height: 1.02;
}

body.aurayne-calculator-page .site-footer {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(164, 128, 90, 0.16);
}

@media (max-width: 980px) {
  body.aurayne-calculator-page .site-shell {
    width: min(100% - 32px, 1180px);
  }

  .aurayne-calculator-hero,
  .aurayne-note-grid,
  .aurayne-transparency-grid,
  .aurayne-method-strip,
  .aurayne-calculator-grid {
    grid-template-columns: 1fr;
  }

  .aurayne-calculator-intro {
    padding: 42px 28px;
  }

  .aurayne-calculator-intro h1 {
    max-width: 100%;
  }

  .aurayne-pattern-field {
    min-height: 240px;
  }
}

@media (max-width: 880px) {
  body.aurayne-calculator-page .nav {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 18px 14px;
    border-radius: 28px;
  }

  body.aurayne-calculator-page .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

  .aurayne-hero-actions,
  .aurayne-hero-meta {
    flex-direction: column;
    align-items: stretch;
  }

  body.aurayne-calculator-page .free-form-card,
  body.aurayne-calculator-page .free-result-card,
  .aurayne-note-card,
  .aurayne-calculator-intro,
  .aurayne-calculator-visual,
  .aurayne-method-strip article,
  .aurayne-soft-panel {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 640px) {
  .aurayne-calculator-intro h1 {
    font-size: clamp(2.65rem, 12vw, 3.8rem);
  }

  body.aurayne-calculator-page .free-form-card h2,
  body.aurayne-calculator-page .free-result-card h3,
  .aurayne-note-card h2,
  .aurayne-soft-panel h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .aurayne-pattern-field .node::after {
    width: 90px;
  }
}
