/*
 * sky-home.css
 * Sky Words Answers - Homepage styles v2
 * DEPLOY_VERSION: 20260622-SW-HOMEV2
 * Prefix: sh- (sky home)
 * NO Google Fonts import - fonts loaded globally by header-premium.php
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --sh-ink:          #0f1b30;
  --sh-body:         #33425c;
  --sh-muted:        #6b7a90;
  --sh-navy:         #16213a;
  --sh-navy-deep:    #0c1322;
  --sh-gold:         #f5a623;
  --sh-gold-hi:      #ffc24d;
  --sh-gold-deep:    #c97f12;
  --sh-panel:        #ffffff;
  --sh-page:         #f6f8fc;
  --sh-cream:        #fbf7ef;
  --sh-border:       #e7ecf4;

  --sh-blue:         #2563eb;
  --sh-blue-tint:    #e8f0fe;
  --sh-blue-deep:    #1d3a8a;

  --sh-teal:         #1f9e75;
  --sh-teal-tint:    #e1f5ee;
  --sh-teal-deep:    #0f5a44;

  --sh-coral:        #e0602f;
  --sh-coral-tint:   #fbeae1;
  --sh-coral-deep:   #9a3c18;

  --sh-purple:       #6d5ae0;
  --sh-purple-tint:  #ece9fb;
  --sh-purple-deep:  #3f338f;

  --sh-amber:        #f5a623;
  --sh-amber-tint:   #fff2da;
  --sh-amber-deep:   #9a6510;

  --sh-pink:         #d4537e;
  --sh-pink-tint:    #fbe6ee;
  --sh-pink-deep:    #872d4c;

  --sh-radius-card:  18px;
  --sh-radius-tile:  12px;
  --sh-radius-chip:  10px;
  --sh-radius-btn:   14px;

  --sh-font-display: 'Fraunces', Georgia, serif;
  --sh-font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --sh-font-mono:    'JetBrains Mono', monospace;
}

/* ============================================================
   BASE RESETS (scoped to sky-home-page body)
   ============================================================ */
.sky-home-page *,
.sky-home-page *::before,
.sky-home-page *::after {
  box-sizing: border-box;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.sh-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.sh-faq-container {
  max-width: 780px;
}

.sh-section {
  padding: 36px 0;
}

.sh-bg-white  { background: var(--sh-panel); }
.sh-bg-cream  { background: var(--sh-cream); }
.sh-bg-page   { background: var(--sh-page); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.sh-heading {
  font-family: var(--sh-font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--sh-ink);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.2;
}

.sh-heading-bar {
  width: 56px;
  height: 4px;
  background: var(--sh-gold);
  border-radius: 2px;
  margin: 0 auto 8px;
  margin: 0 auto 8px;
}

.sh-heading-sub {
  font-size: 15px;
  color: var(--sh-muted);
  text-align: center;
  margin: 0 0 22px;
  font-family: var(--sh-font-body);
}

.sh-center-link {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   RAISED LETTER TILE
   ============================================================ */
.sh-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--sh-radius-tile);
  font-family: var(--sh-font-display);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 2px 0 rgba(0,0,0,.18),
    0 3px 6px rgba(0,0,0,.15);
}

.sh-tile--40 { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
.sh-tile--48 { width: 48px; height: 48px; font-size: 20px; }
.sh-tile--60 { width: 60px; height: 60px; font-size: 26px; }

.sh-tile--navy   { background: linear-gradient(180deg, #1e2d4e, #16213a); color: var(--sh-gold); }
.sh-tile--blue   { background: linear-gradient(180deg, #3b7af0, #2563eb); color: #fff; }
.sh-tile--teal   { background: linear-gradient(180deg, #28b88a, #1f9e75); color: #fff; }
.sh-tile--coral  { background: linear-gradient(180deg, #e8764a, #e0602f); color: #fff; }
.sh-tile--purple { background: linear-gradient(180deg, #7e6de8, #6d5ae0); color: #fff; }
.sh-tile--amber  { background: linear-gradient(180deg, #ffc24d, #f5a623); color: var(--sh-navy); }
.sh-tile--pink   { background: linear-gradient(180deg, #db6d94, #d4537e); color: #fff; }

/* ============================================================
   CARD
   ============================================================ */
.sh-card {
  background: var(--sh-panel);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  box-shadow: 0 2px 6px rgba(15,27,48,.06);
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

a.sh-card:hover,
.sh-card:hover {
  box-shadow: 0 12px 30px rgba(15,27,48,.12);
  transform: translateY(-3px);
  border-color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--sh-font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--sh-radius-btn);
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 100ms ease, box-shadow 100ms ease;
  min-height: 44px;
}

.sh-btn--gold {
  background: linear-gradient(180deg, #ffc24d, #f5a623);
  color: var(--sh-navy);
  box-shadow: 0 3px 0 #c97f12, 0 4px 10px rgba(245,166,35,.35);
}

.sh-btn--gold:hover {
  background: linear-gradient(180deg, #ffd070, #f9b030);
}

.sh-btn--gold:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 #c97f12, 0 1px 4px rgba(245,166,35,.25);
}

.sh-btn--navy {
  background: var(--sh-navy);
  color: #fff;
  box-shadow: 0 3px 0 #060e1b, 0 4px 10px rgba(12,19,34,.30);
}

.sh-btn--navy:hover {
  background: #1e2d4e;
}

.sh-btn--navy:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 #060e1b, 0 1px 4px rgba(12,19,34,.20);
}

.sh-ghost {
  color: var(--sh-blue);
  font-weight: 600;
  text-decoration: none;
  font-family: var(--sh-font-body);
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
}

.sh-ghost:hover { text-decoration: underline; }
.sh-ghost::after { content: ' ->'; }

.sh-ghost-inline {
  color: var(--sh-blue);
  font-weight: 600;
  font-family: var(--sh-font-body);
  font-size: 13px;
  display: block;
  margin-top: 6px;
}

.sh-ghost-inline:hover { text-decoration: underline; }

/* ============================================================
   BADGE
   ============================================================ */
.sh-badge {
  display: inline-block;
  background: rgba(245,166,35,.18);
  border: 1px solid rgba(245,166,35,.40);
  color: var(--sh-gold-hi);
  font-family: var(--sh-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

/* ============================================================
   CHIP
   ============================================================ */
.sh-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sh-panel);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-chip);
  color: var(--sh-body);
  font-family: var(--sh-font-body);
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 13px;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
  min-height: 36px;
  white-space: nowrap;
}

.sh-chip:hover {
  background: var(--sh-blue-tint);
  border-color: var(--sh-blue);
  color: var(--sh-blue-deep);
}

.sh-chip--range {
  font-family: var(--sh-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 10px 16px;
  color: var(--sh-navy);
  box-shadow: 0 1px 3px rgba(15,27,48,.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.sh-chip--range:hover {
  border-color: var(--sh-gold);
  box-shadow: 0 4px 12px rgba(245,166,35,.18);
  transform: translateY(-2px);
  color: var(--sh-gold-deep);
}

/* ============================================================
   SECTION 1 - HERO
   ============================================================ */
.sh-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1322 0%, #16356a 52%, #2f74cf 118%);
  padding: 56px 24px 44px;
  text-align: center;
}

.sh-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.sh-hero-tile {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 2px 0 rgba(0,0,0,.18),
    0 3px 6px rgba(0,0,0,.15);
  pointer-events: none;
  z-index: 1;
}

.sh-hero-tile--1 { top: 12%;    left:  6%;  transform: rotate(-8deg); opacity: .24; background: linear-gradient(180deg, #5edbb2, #28b88a); color: #fff; }
.sh-hero-tile--2 { top: 22%;    right: 8%;  transform: rotate(6deg);  opacity: .25; background: linear-gradient(180deg, #f09872, #e8764a); color: #fff; }
.sh-hero-tile--3 { bottom: 28%; left: 10%;  transform: rotate(5deg);  opacity: .26; background: linear-gradient(180deg, #ffd77a, #ffc24d); color: #fff; }
.sh-hero-tile--4 { bottom: 18%; right: 12%; transform: rotate(-6deg); opacity: .23; background: linear-gradient(180deg, #a090f0, #7e6de8); color: #fff; }
.sh-hero-tile--5 { top: 50%;    left:  3%;  transform: rotate(3deg);  opacity: .22; background: linear-gradient(180deg, #e898b4, #db6d94); color: #fff; }

.sh-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.sh-h1 {
  font-family: var(--sh-font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: -.01em;
}

.sh-h1-gold {
  color: var(--sh-gold-hi);
}

.sh-sub {
  font-family: var(--sh-font-body);
  font-size: 18px;
  color: rgba(255,255,255,.82);
  margin: 0 0 32px;
  line-height: 1.6;
}

.sh-search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 36px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 6px 6px 6px 16px;
}

.sh-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sh-font-body);
  font-size: 16px;
  color: #fff;
  min-width: 0;
  min-height: 44px;
}

.sh-search-input::placeholder {
  color: rgba(255,255,255,.5);
}

/* Hide number spinners */
.sh-search-input::-webkit-outer-spin-button,
.sh-search-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sh-search-input[type=number] { -moz-appearance: textfield; }

.sh-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.sh-ribbon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
}

.sh-ribbon-icon {
  color: var(--sh-gold-hi);
  display: flex;
  align-items: center;
}

.sh-ribbon-num {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.sh-ribbon-label {
  font-family: var(--sh-font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   SECTION 2 - INTRO
   ============================================================ */
.sh-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.sh-section-h2 {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--sh-ink);
  margin: 0 0 12px;
  line-height: 1.25;
}

.sh-intro-prose p {
  font-family: var(--sh-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sh-body);
  margin: 0 0 14px;
}

.sh-intro-panel {
  background: var(--sh-panel);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 24px;
}

.sh-intro-panel-head {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sh-muted);
  margin: 0 0 16px;
}

.sh-intro-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sh-intro-link-item { margin: 0; padding: 0; }

.sh-intro-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--sh-border);
  transition: background 140ms ease, border-color 140ms ease;
}

.sh-intro-link:hover {
  background: var(--sh-blue-tint);
  border-color: var(--sh-blue);
}

.sh-intro-link strong {
  display: block;
  font-family: var(--sh-font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--sh-ink);
}

.sh-intro-link-sub {
  display: block;
  font-family: var(--sh-font-body);
  font-size: 12px;
  color: var(--sh-muted);
  margin-top: 2px;
}

/* ============================================================
   SECTION 3 - SEARCH TOOLS
   ============================================================ */
.sh-search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sh-search-card {
  padding: 24px;
}

.sh-search-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.sh-search-card-title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--sh-ink);
  margin: 0 0 3px;
}

.sh-search-card-desc {
  font-family: var(--sh-font-body);
  font-size: 13px;
  color: var(--sh-muted);
  margin: 0;
}

.sh-search-row {
  display: flex;
  gap: 10px;
}

.sh-input {
  flex: 1;
  font-family: var(--sh-font-body);
  font-size: 15px;
  color: var(--sh-ink);
  background: var(--sh-page);
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  padding: 11px 14px;
  outline: none;
  min-height: 44px;
  min-width: 0;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.sh-input:focus {
  border-color: var(--sh-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.sh-search-results {
  margin-top: 14px;
  min-height: 0;
  font-family: var(--sh-font-body);
  font-size: 14px;
  color: var(--sh-body);
  line-height: 1.6;
}

/* ============================================================
   SECTION 4 - DAILY PUZZLE
   ============================================================ */
.sh-daily-card {
  display: flex;
  overflow: hidden;
  padding: 0;
}

.sh-daily-accent {
  width: 6px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ffc24d, #f5a623);
  border-radius: var(--sh-radius-card) 0 0 var(--sh-radius-card);
}

.sh-daily-body {
  flex: 1;
  padding: 28px 28px 24px;
}

.sh-daily-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sh-daily-label {
  font-family: var(--sh-font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sh-muted);
  margin: 0 0 3px;
}

.sh-daily-date {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--sh-ink);
  margin: 0;
}

.sh-daily-cta {
  margin-left: auto;
}

.sh-daily-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

/* ============================================================
   SECTION 5 - POPULAR LEVELS
   ============================================================ */
.sh-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sh-level-card {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.sh-level-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.sh-level-card-title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--sh-ink);
}

.sh-level-card-world {
  font-family: var(--sh-font-body);
  font-size: 12px;
  color: var(--sh-muted);
}

.sh-level-card-arrow {
  color: var(--sh-muted);
  flex-shrink: 0;
  transition: transform 160ms ease, color 160ms ease;
}

.sh-level-card:hover .sh-level-card-arrow {
  transform: translateX(3px);
  color: var(--sh-blue);
}

/* ============================================================
   SECTION 6 - WORLDS GRID
   ============================================================ */
.sh-worlds-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.sh-world-card {
  padding: 14px 14px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sh-world-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sh-world-card-name {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--sh-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sh-world-card-range {
  font-family: var(--sh-font-body);
  font-size: 11px;
  color: var(--sh-muted);
  font-family: var(--sh-font-mono);
}

/* ============================================================
   SECTION 7 - LEVEL RANGE CHIPS
   ============================================================ */
.sh-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   SECTION 8 - HOW IT WORKS
   ============================================================ */
.sh-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sh-step-card {
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sh-step-title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--sh-ink);
  margin: 0;
}

.sh-step-desc {
  font-family: var(--sh-font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--sh-muted);
  margin: 0;
}

/* ============================================================
   SECTION 9 - GUIDES
   ============================================================ */
.sh-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sh-guide-card {
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
}

.sh-guide-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.sh-guide-card-title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sh-ink);
}

.sh-guide-card-desc {
  font-family: var(--sh-font-body);
  font-size: 13px;
  color: var(--sh-muted);
  line-height: 1.55;
}

/* ============================================================
   SECTION 10 - FAQ
   ============================================================ */
.sh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sh-faq-item {
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.sh-faq-q {
  padding: 18px 22px;
  font-family: var(--sh-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--sh-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.sh-faq-q::-webkit-details-marker { display: none; }
.sh-faq-q::marker               { display: none; }

.sh-faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sh-blue-tint);
  color: var(--sh-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  transition: background 140ms ease, color 140ms ease;
}

.sh-faq-item[open] .sh-faq-toggle {
  background: var(--sh-blue);
  color: #fff;
  content: '-';
}

.sh-faq-a {
  padding: 0 22px 18px;
  font-family: var(--sh-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sh-body);
}

.sh-faq-a p { margin: 0; }

/* ============================================================
   SECTION 11 - ABOUT + AUTHOR
   ============================================================ */
.sh-about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.sh-about-h2 {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--sh-ink);
  margin: 0 0 16px;
}

.sh-about-prose p {
  font-family: var(--sh-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sh-body);
  margin: 0 0 14px;
}

.sh-author-card {
  padding: 24px;
}

.sh-author-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sh-author-name {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--sh-ink);
  margin: 0 0 2px;
}

.sh-author-title {
  font-family: var(--sh-font-body);
  font-size: 13px;
  color: var(--sh-muted);
  margin: 0;
}

.sh-author-bio {
  font-family: var(--sh-font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--sh-body);
  margin: 0 0 12px;
}

.sh-author-verify {
  font-family: var(--sh-font-body);
  font-size: 13px;
  color: var(--sh-muted);
  margin: 0 0 12px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .sh-card,
  .sh-card:hover,
  .sh-intro-link,
  .sh-btn,
  .sh-chip,
  .sh-level-card-arrow,
  .sh-faq-toggle {
    transition: none;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   RESPONSIVE - TABLET  (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .sh-section { padding: 32px 0; }

  .sh-worlds-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sh-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sh-guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sh-intro-grid {
    grid-template-columns: 1fr;
  }

  .sh-about-grid {
    grid-template-columns: 1fr;
  }

  .sh-levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE - MOBILE  (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  .sh-section { padding: 24px 0; }

  .sh-hero { padding: 44px 16px 36px; }

  .sh-h1 { font-size: 28px; }
  .sh-sub { font-size: 16px; }

  .sh-search-pill {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
    border-radius: 14px;
  }

  .sh-search-input { width: 100%; text-align: center; }

  .sh-btn { width: 100%; justify-content: center; }

  .sh-ribbon { gap: 10px 20px; }

  .sh-heading { font-size: 24px; }

  .sh-search-grid {
    grid-template-columns: 1fr;
  }

  .sh-search-row {
    flex-direction: column;
  }

  .sh-levels-grid {
    grid-template-columns: 1fr;
  }

  .sh-worlds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sh-steps-grid {
    grid-template-columns: 1fr;
  }

  .sh-guides-grid {
    grid-template-columns: 1fr;
  }

  .sh-daily-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .sh-daily-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .sh-hero-tile--1,
  .sh-hero-tile--2,
  .sh-hero-tile--5 {
    display: none;
  }
}

/* Compact section variant for range chips */
.sh-section--compact { padding: 32px 0; }
@media (max-width: 640px) { .sh-section--compact { padding: 20px 0; } }

/* Accessibility - focus rings */
.sh-btn:focus-visible,
.sh-chip:focus-visible,
.sh-card:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sh-gold);
  outline-offset: 2px;
}
.sh-input:focus-visible,
.sh-search-input:focus-visible {
  outline: 3px solid var(--sh-blue);
  outline-offset: 1px;
  border-color: var(--sh-blue);
}
