@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

:root {
  --ink: #171717;
  --ink-soft: #32302f;
  --muted: #706b68;
  --line: #e6e0d9;
  --paper: #f7f4ee;
  --panel: #fffefa;
  --panel-strong: #ffffff;
  --violet: #3b2b82;
  --violet-soft: #ece8ff;
  --gold: #a9793f;
  --gold-soft: #f4eadb;
  --shadow: 0 18px 48px rgba(35, 31, 28, .08);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(236, 232, 255, .72), transparent 34rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 38%, #fbfaf7 100%);
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  word-break: keep-all;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 0 clamp(20px, 6vw, 88px);
  background: rgba(255, 254, 250, .86);
  border-bottom: 1px solid rgba(230, 224, 217, .82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand::before {
  content: "ᚱ";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 17px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.topbar__links {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  scrollbar-width: none;
}

.topbar__links::-webkit-scrollbar {
  display: none;
}

.topbar__links a {
  padding: 9px 11px;
  color: var(--muted);
  border-radius: 999px;
  text-decoration: none;
}

.topbar__links a:hover,
.lang-toggle:hover {
  color: var(--ink);
  background: rgba(59, 43, 130, .08);
}

.lang-toggle {
  border: 1px solid rgba(59, 43, 130, .18);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--violet);
  background: rgba(255,255,255,.58);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  padding: 84px clamp(20px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(251,250,247,.98) 0%, rgba(251,250,247,.9) 38%, rgba(251,250,247,.18) 70%),
    url("./assets/hero-rune-kit.png") center right / cover no-repeat;
}

.hero__copy { max-width: 660px; }

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Gowun Batang", "Noto Serif KR", serif;
  letter-spacing: 0;
  line-height: 1.16;
}

h1 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

p {
  color: var(--muted);
  font-size: 17px;
}

strong {
  color: var(--ink);
}

.hero__copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(23, 23, 23, .16);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(23, 23, 23, .06);
}

.button--primary {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button--ghost:hover,
.button--primary:hover {
  transform: translateY(-1px);
}

.band {
  padding: 82px clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(230, 224, 217, .86);
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 740px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.quick-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 254, 250, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(35, 31, 28, .045);
}

a.quick-card:hover {
  border-color: rgba(59, 43, 130, .28);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quick-card strong {
  font-size: 20px;
  line-height: 1.3;
}

.quick-card span {
  color: var(--muted);
}

.status-pill {
  width: fit-content;
  padding: 4px 10px;
  color: var(--violet);
  background: var(--violet-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.reader {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 24px;
  align-items: start;
}

.panel,
.result {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(35, 31, 28, .05);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(59, 43, 130, .14);
  border-color: rgba(59, 43, 130, .42);
}

.personal-fields {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(59, 43, 130, .14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffefa 0%, #f7f4ff 100%);
}

.form-section-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.form-section-title strong {
  font-size: 16px;
}

.form-section-title span,
.field-help {
  color: var(--muted);
  font-size: 13px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.personal-fields label {
  margin-bottom: 10px;
}

.place-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.place-field input {
  min-width: 0;
}

.place-search-button {
  min-height: 46px;
  border: 1px solid rgba(59, 43, 130, .22);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--violet);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.place-search-button:hover {
  background: var(--violet-soft);
}

.field-help {
  margin: 2px 0 0;
  line-height: 1.55;
}

.spread-picker {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.spread-picker legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.spread-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.spread-option {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 104px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.spread-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.spread-option:has(input:checked) {
  border-color: rgba(59, 43, 130, .52);
  background: linear-gradient(135deg, #fff, #f2efff);
  box-shadow: 0 12px 26px rgba(59, 43, 130, .12);
}

.spread-option:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 43, 130, .32);
  box-shadow: 0 10px 22px rgba(35, 31, 28, .06);
}

.spread-option strong,
.spread-option small {
  display: block;
}

.spread-option strong {
  font-size: 16px;
  line-height: 1.25;
}

.spread-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.spread-visual {
  display: grid;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(59, 43, 130, .22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(59, 43, 130, .11) 49%, rgba(59, 43, 130, .11) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(59, 43, 130, .11) 49%, rgba(59, 43, 130, .11) 51%, transparent 51%),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,.95), transparent 34%),
    #f8f5ef;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}

.spread-visual i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(59, 43, 130, .09);
  align-self: center;
  justify-self: center;
}

.spread-visual--one {
  place-items: center;
}

.spread-visual--three,
.spread-visual--grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 10px;
}

.spread-visual--three i {
  grid-row: 2;
}

.spread-visual--cross,
.spread-visual--path {
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  padding: 8px;
}

.spread-visual--cross i:nth-child(1) { grid-column: 3; grid-row: 3; }
.spread-visual--cross i:nth-child(2) { grid-column: 3; grid-row: 1; }
.spread-visual--cross i:nth-child(3) { grid-column: 3; grid-row: 5; }
.spread-visual--cross i:nth-child(4) { grid-column: 1; grid-row: 3; }
.spread-visual--cross i:nth-child(5) { grid-column: 5; grid-row: 3; }

.spread-visual--path i:nth-child(1) { grid-column: 1; grid-row: 5; }
.spread-visual--path i:nth-child(2) { grid-column: 2; grid-row: 4; }
.spread-visual--path i:nth-child(3) { grid-column: 2; grid-row: 2; }
.spread-visual--path i:nth-child(4) { grid-column: 3; grid-row: 3; }
.spread-visual--path i:nth-child(5) { grid-column: 4; grid-row: 2; }
.spread-visual--path i:nth-child(6) { grid-column: 4; grid-row: 4; }
.spread-visual--path i:nth-child(7) { grid-column: 5; grid-row: 1; }

.spread-copy {
  min-width: 0;
}

.empty { margin: 0; }

.spread-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spread-card:last-child { border-bottom: 0; }

.rune-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #4d3a9a, var(--ink) 72%);
  color: #e2bd76;
  font-size: 44px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);
}

.result h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.result p {
  margin: 6px 0;
  line-height: 1.75;
}

.astro-note {
  padding: 10px 12px;
  border: 1px solid rgba(59, 43, 130, .14);
  border-radius: var(--radius);
  background: rgba(247, 244, 255, .8);
}

.llm-summary {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(59, 43, 130, .16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7f4ff 0%, #fffefa 100%);
}

.llm-summary h3 {
  margin-bottom: 12px;
}

.reading-copy p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.reading-copy p:last-child {
  margin-bottom: 0;
}

.drawn-runes {
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.drawn-runes summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 900;
  list-style-position: inside;
}

.drawn-runes .spread-card {
  margin: 0 16px;
}

.result > .button {
  margin-top: 4px;
}

.band--split {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 42px;
  align-items: center;
}

.band--split img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.checks {
  padding-left: 20px;
  color: var(--ink-soft);
}

.checks li { margin: 8px 0; }

.rune-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
  gap: 10px;
}

.rune-tile {
  display: block;
  min-height: 126px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(35, 31, 28, .04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.rune-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 43, 130, .26);
  box-shadow: 0 16px 34px rgba(35, 31, 28, .08);
}

.rune-tile strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}

.rune-tile .symbol {
  font-size: 38px;
  color: var(--violet);
  line-height: 1;
}

.rune-tile small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.guide {
  padding-bottom: 80px;
}

.guide-hero {
  padding: 92px clamp(20px, 6vw, 88px) 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251,250,247,.97), rgba(251,250,247,.84)),
    url("./assets/oracle-kit-product.png") center right / cover no-repeat;
}

.guide-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 5.6vw, 76px);
}

.guide-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
}

.guide-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 30px) 0;
}

.guide-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.guide-section h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 44px);
}

.flow-box,
.note-box {
  margin: 24px 0;
  padding: 18px 20px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(35, 31, 28, .04);
}

.flow-box {
  color: var(--violet);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(35, 31, 28, .04);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel-strong);
}

th,
td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  background: #fbfaf7;
  font-size: 13px;
}

.compare-grid,
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.compare-grid > div,
.practice-card {
  padding: 20px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(35, 31, 28, .04);
}

.compare-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 24px;
}

.step-list li {
  padding-left: 7px;
  color: var(--ink-soft);
  font-size: 17px;
}

.guide-cta {
  padding: 48px 0 10px;
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--ink);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(35, 31, 28, .04);
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px clamp(20px, 4vw, 30px) 90px;
}

.article-body h2 {
  margin: 54px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.article-body h3 {
  margin: 30px 0 12px;
}

.article-body p,
.article-body li {
  font-size: 18px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--violet);
  background: var(--panel-strong);
  color: var(--ink-soft);
}

.source-list {
  padding-left: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 70px);
  background: rgba(251, 250, 247, .92);
  border-bottom: 1px solid rgba(230, 224, 217, .84);
  backdrop-filter: blur(18px);
}

.site-header nav {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.site-header a {
  color: var(--muted);
  text-decoration: none;
}

.site-header nav a {
  padding: 9px 11px;
  border-radius: 999px;
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(59, 43, 130, .08);
}

.rune-detail-hero {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 880px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 82px clamp(20px, 7vw, 110px) 58px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 12%, rgba(118, 91, 221, .16), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.rune-detail-symbol {
  display: grid;
  place-items: center;
  width: min(34vw, 210px);
  aspect-ratio: 1;
  color: var(--violet);
  font-family: "Gowun Batang", serif;
  font-size: clamp(92px, 16vw, 170px);
  line-height: 1;
  border: 1px solid rgba(59, 43, 130, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 20px 50px rgba(35, 31, 28, .08);
}

.rune-detail-hero h1 {
  max-width: 960px;
  margin: 10px 0 18px;
  font-size: clamp(38px, 5vw, 72px);
}

.rune-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.rune-meta-row span {
  padding: 8px 12px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(59, 43, 130, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}

.long-article {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 30px) 72px;
}

.long-article h2 {
  margin: 58px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.long-article h3 {
  margin: 32px 0 12px;
  font-size: 23px;
}

.long-article p,
.long-article li {
  font-size: 18px;
  line-height: 1.95;
}

.long-article .lead {
  padding: 24px 26px;
  color: var(--ink-soft);
  font-size: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
}

.long-article a {
  color: var(--violet);
  font-weight: 800;
}

.rune-page-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 88px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .topbar__links {
    width: 100%;
    gap: 4px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero {
    min-height: 76vh;
    align-items: end;
    background:
      linear-gradient(0deg, rgba(251,250,247,.98) 0%, rgba(251,250,247,.78) 58%, rgba(251,250,247,.18) 100%),
      url("./assets/hero-rune-kit.png") center / cover no-repeat;
  }

  .reader,
  .band--split {
    grid-template-columns: 1fr;
  }

  .spread-card {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .rune-mark {
    width: 58px;
    height: 58px;
    font-size: 32px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .rune-detail-hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .rune-detail-symbol {
    width: 150px;
  }
}

@media (max-width: 520px) {
  .band,
  .hero,
  .guide-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quick-card,
  .panel,
  .result {
    padding: 18px;
  }

  .reader {
    gap: 16px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .spread-option {
    min-height: 88px;
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .spread-visual {
    width: 58px;
    height: 58px;
  }

  .form-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .result h2 {
    font-size: 32px;
  }

  .result h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .result p {
    font-size: 15px;
    line-height: 1.72;
  }

  .spread-card p strong {
    display: inline;
  }

  .llm-summary {
    padding: 16px;
  }

  .reading-copy p {
    font-size: 15px;
    line-height: 1.82;
  }

  .drawn-runes {
    margin: 14px 0;
  }

  .drawn-runes summary {
    padding: 12px 14px;
    font-size: 15px;
  }

  .drawn-runes .spread-card {
    margin: 0 14px;
  }

  h1 {
    font-size: 42px;
  }

  .guide-hero h1 {
    font-size: 38px;
  }

  #runes.band {
    padding-top: 44px;
  }

  #runes .section-head {
    margin-bottom: 18px;
  }

  #runes .section-head h2 {
    font-size: 34px;
  }

  .rune-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rune-tile {
    min-height: 94px;
    padding: 11px 12px;
  }

  .rune-tile .symbol {
    font-size: 30px;
  }

  .rune-tile strong {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.25;
  }

  .rune-tile small {
    margin-top: 5px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media print {
  .hero, .panel, #kit, .rune-grid, .section-head { display: none; }
  body { background: white; }
  .band { padding: 0; border: 0; }
  .result { border: 0; padding: 0; }
}
