:root {
  --hue-primary: #db5422;
  --hue-accent: #f87139;
  --hue-surface: #121826;
  --hue-card: #1a2234;
  --hue-bg: #0b0f19;
  --hue-text: #f0f4f8;
  --hue-muted: #94a3b8;
  --hue-border: rgba(219, 84, 34, 0.25);
  --radius-main: 14px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--hue-bg);
  color: var(--hue-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Header & Nav Styling */
.crown {
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hue-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.corral {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.mark {
  display: flex;
  align-items: center;
  min-width: 0;
}

.mark img {
  height: 38px;
  width: auto;
  display: block;
}

.steer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.horn {
  color: var(--hue-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  padding: 6px 12px;
  border-radius: 8px;
}

.horn:hover,
.horn.active {
  color: #ffffff;
  background: rgba(219, 84, 34, 0.15);
}

.horn.active {
  color: var(--hue-accent);
  font-weight: 600;
}

/* Main Container Layout */
main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 0 80px;
}

/* Section 1: Intro Step Process - Article Block */
.rally {
  background: radial-gradient(circle at 80% 20%, rgba(248, 113, 57, 0.08) 0%, transparent 60%);
  padding: 32px 0;
}

.whisper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  min-width: 0;
}

.notch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(219, 84, 34, 0.12);
  border: 1px solid var(--hue-border);
  border-radius: 20px;
  color: var(--hue-accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.spark {
  white-space: normal;
  color: #ffffff;
  font-weight: 800;
}

h1.spark {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.3;
  margin-bottom: 16px;
}

h2.spark {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  margin-bottom: 14px;
}

h3.spark {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.bloom {
  color: var(--hue-muted);
  font-size: 16px;
  line-height: 1.7;
}

.sigil {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.strand {
  background: var(--hue-card);
  border: 1px solid var(--hue-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.strand:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(219, 84, 34, 0.25);
  border-color: rgba(248, 113, 57, 0.5);
}

.hoof {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 113, 57, 0.2) 0%, rgba(219, 84, 34, 0.05) 100%);
  border: 1px solid rgba(248, 113, 57, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--hue-accent);
}

.plaque {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--hue-accent);
  background: rgba(219, 84, 34, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.sprout {
  list-style: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sprout li {
  color: #d1d5db;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sprout li::before {
  content: "✓";
  color: var(--hue-accent);
  font-weight: bold;
}

.nudge-vault {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.charge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--hue-accent) 0%, var(--hue-primary) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--radius-main);
  box-shadow: 0 8px 24px rgba(219, 84, 34, 0.35);
  transition: all 0.25s ease;
  min-width: 0;
}

.charge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(219, 84, 34, 0.5);
  background: linear-gradient(135deg, #ff824c 0%, #eb5b25 100%);
}

.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--radius-main);
  transition: all 0.25s ease;
  min-width: 0;
}

.stamp:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Section 2: Context Guidance - Aside Block */
.vault {
  background: var(--hue-surface);
  border-top: 1px solid var(--hue-border);
  border-bottom: 1px solid var(--hue-border);
  padding: 64px 0;
}

.parcel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.parcel {
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 0.25s ease;
}

.parcel:hover {
  border-color: var(--hue-border);
}

.parcel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* Section 3: FAQ Block - Div Block */
.haven {
  padding: 32px 0;
}

.faq-sigil {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.clod {
  background: var(--hue-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-main);
  padding: 20px 24px;
  transition: all 0.25s ease;
}

.clod[open] {
  border-color: var(--hue-border);
  background: rgba(26, 34, 52, 0.9);
}

.clod summary {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clod summary::-webkit-details-marker {
  display: none;
}

.clod summary::after {
  content: "+";
  font-size: 24px;
  color: var(--hue-accent);
  transition: transform 0.25s ease;
}

.clod[open] summary::after {
  content: "−";
}

.clod .bloom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

/* Footer Section */
.bedrock {
  background: #060911;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 32px;
  margin-top: 40px;
}

.trough {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}

.trough .spark {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.meadow {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  min-width: 0;
}

.meadow .horn {
  font-size: 14px;
  color: var(--hue-muted);
}

.meadow .horn:hover {
  color: #ffffff;
}

.surge-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  main {
    gap: 40px;
    padding: 32px 0 48px;
  }

  .steer {
    gap: 12px;
    margin-top: 12px;
    width: 100%;
  }

  .sigil,
  .parcel-grid {
    grid-template-columns: 1fr;
  }

  .strand,
  .parcel {
    padding: 24px;
  }

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

.crest-crown{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 15, 25, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(219, 84, 34, 0.25);
        }

.crest-crown .crest-corral{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.crest-crown .crest-mark{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.crest-crown .crest-mark img{
            height: 38px;
            width: auto;
            display: block;
        }

.crest-crown .crest-steer{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

.crest-crown .crest-horn{
            padding: 8px 18px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            transition: all 0.25s ease;
        }

.crest-crown .crest-horn:hover{
            color: #ffffff;
            background: rgba(219, 84, 34, 0.15);
        }

.crest-crown .crest-horn.active{
            color: #ffffff;
            background: #db5422;
            box-shadow: 0 4px 14px rgba(219, 84, 34, 0.4);
        }

@media (max-width: 768px){.crest-crown .crest-corral{
                height: auto;
                padding: 16px;
                gap: 12px;
            }

.crest-crown .crest-steer{
                width: 100%;
                justify-content: space-between;
            }

.crest-crown .crest-horn{
                padding: 6px 12px;
                font-size: 13px;
            }}

.crest-crown {
    background: rgb(11, 15, 25);
    background-image: none;
}

.bedrock-bedrock {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--hue-bloom);
}
.bedrock-bedrock,
.bedrock-bedrock *,
.bedrock-bedrock *::before,
.bedrock-bedrock *::after {
    box-sizing: border-box;
}

.bedrock-bedrock [role="navigation"],
.bedrock-bedrock div,
.bedrock-bedrock section,
.bedrock-bedrock article,
.bedrock-bedrock aside,
.bedrock-bedrock p,
.bedrock-bedrock h1,
.bedrock-bedrock h2,
.bedrock-bedrock h3,
.bedrock-bedrock h4,
.bedrock-bedrock h5,
.bedrock-bedrock h6,
.bedrock-bedrock a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.bedrock-bedrock p,
.bedrock-bedrock h1,
.bedrock-bedrock h2,
.bedrock-bedrock h3,
.bedrock-bedrock h4,
.bedrock-bedrock h5,
.bedrock-bedrock h6 {
    text-decoration: none;
}

.bedrock-bedrock img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.bedrock-bedrock {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.bedrock-bedrock a,
.bedrock-bedrock a:hover,
.bedrock-bedrock a:focus,
.bedrock-bedrock a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.bedrock-bedrock{
            background: #070a11;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 0 30px;
        }

.bedrock-bedrock .bedrock-spur-inner{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

.bedrock-bedrock .bedrock-whisper-brand{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-bedrock .bedrock-spark-brand{
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.bedrock-bedrock .bedrock-bloom-bloom{
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.6;
        }

.bedrock-bedrock .bedrock-sigil-links{
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

.bedrock-bedrock .bedrock-clod-col{
            flex: 1 1 120px;
            min-width: 0;
        }

.bedrock-bedrock .bedrock-spark-subhead{
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

.bedrock-bedrock .bedrock-sigil-spur-sprout{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.bedrock-bedrock .bedrock-horn-spur{
            font-size: 13px;
            color: #94a3b8;
            transition: color 0.25s ease;
        }

.bedrock-bedrock .bedrock-horn-spur:hover{
            color: #f87139;
        }

.bedrock-bedrock .bedrock-notch-bottom{
            max-width: 1320px;
            margin: 40px auto 0;
            padding: 24px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 12px;
            color: #64748b;
        }