:root {
  --bg-main: #fbf9f8;
  --bg-card: #ffffff;
  --text-main: #1d1816;
  --text-sub: #5c534e;
  --accent: #eb715c;
  --accent-hover: #d95d48;
  --accent-light: rgba(235, 113, 92, 0.08);
  --border: #ede4e1;
  --shadow: 0 10px 30px rgba(235, 113, 92, 0.08);
  --shadow-hover: 0 16px 36px rgba(235, 113, 92, 0.16);
  --radius: 20px;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

.synapse-crown {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 249, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.matrix-weave {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.orbit-weave {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.glyph img {
  height: 40px;
  width: auto;
  display: block;
}

.strand-tier {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trace {
  padding: 8px 16px;
  font-weight: 500;
  color: var(--text-sub);
  border-radius: 12px;
  transition: all 0.35s ease;
  min-width: 0;
  word-break: break-word;
}

.trace:hover,
.trace.active {
  color: var(--accent);
  background: var(--accent-light);
}

main {
  display: block;
}

.beacon-vessel {
  padding: 70px 24px 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
  border-bottom: 1px solid var(--border);
}

.vector-matrix {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.tier-matrix {
  flex: 1 1 500px;
  min-width: 0;
}

.crest-vessel {
  margin-bottom: 24px;
}

.crest-a {
  font-size: 2.8rem;
  line-height: 1.25;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: normal;
  margin-bottom: 16px;
}

.vocal-weave {
  font-size: 1.15rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 32px;
}

.node-capsule {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.pod-packet {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-width: 0;
}

.pod-packet:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.rune-glyph {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.vocal-node {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.trigger-spark {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pulse-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  min-width: 0;
}

.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(235, 113, 92, 0.3);
  border: 1px solid var(--accent);
}

.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(235, 113, 92, 0.4);
}

.secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.prism-weave {
  flex: 1 1 500px;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: var(--accent-light);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.capsule-packet {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.capsule-packet:hover {
  transform: translateY(-4px);
}

.band-weave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.nexus-vessel {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.crest-b {
  font-size: 2.2rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
  white-space: normal;
}

.vocal-weave.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.node-capsule.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.packet-a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  position: relative;
}

.packet-a:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.packet-a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 40px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

.zenith-vessel {
  background: #ffffff;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.matrix-vessel {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.tether-root {
  background: #181413;
  color: #e4dedb;
  padding: 60px 24px 40px;
}

.base-echo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.tether-column {
  flex: 1 1 200px;
  min-width: 0;
}

.tether-crest {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tether-strand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tether-trace {
  color: #a39791;
  font-size: 0.95rem;
  transition: color 0.35s ease;
}

.tether-trace:hover {
  color: var(--accent);
}

.copyright-vocal {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  text-align: center;
  color: #7a6e67;
  font-size: 0.9rem;
}

.wave-anim {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.wave-band {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1.2s infinite ease-in-out alternate;
}

.wave-band:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.wave-band:nth-child(2) { height: 80%; animation-delay: 0.3s; }
.wave-band:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.wave-band:nth-child(4) { height: 60%; animation-delay: 0.4s; }
.wave-band:nth-child(5) { height: 30%; animation-delay: 0.5s; }

@keyframes wave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

@media (max-width: 768px) {
  .orbit-weave {
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  
  .strand-tier {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .crest-a {
    font-size: 2rem;
  }
  
  .crest-b {
    font-size: 1.7rem;
  }

  .prism-weave {
    grid-template-columns: 1fr;
  }
}

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

.synapse-synapse-crown nav,
.synapse-synapse-crown div,
.synapse-synapse-crown section,
.synapse-synapse-crown article,
.synapse-synapse-crown aside,
.synapse-synapse-crown p,
.synapse-synapse-crown h1,
.synapse-synapse-crown h2,
.synapse-synapse-crown h3,
.synapse-synapse-crown h4,
.synapse-synapse-crown h5,
.synapse-synapse-crown h6,
.synapse-synapse-crown a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.synapse-synapse-crown a.synapse-trace {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.synapse-synapse-crown a.synapse-trace,
.synapse-synapse-crown a.synapse-trace:hover,
.synapse-synapse-crown a.synapse-trace:focus,
.synapse-synapse-crown a.synapse-trace:active,
.synapse-synapse-crown a.synapse-trace.active,
.synapse-synapse-crown a.synapse-trace[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.synapse-synapse-crown{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(251, 249, 248, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #ede4e1;
            padding: 16px 24px;
        }

.synapse-synapse-crown .synapse-matrix-weave{
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

.synapse-synapse-crown .synapse-orbit-weave{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.synapse-synapse-crown .synapse-glyph{
            display: flex;
            align-items: center;
        }

.synapse-synapse-crown .synapse-glyph{
            height: 38px;
            width: auto;
            display: flex;
            align-items: center;
        }

.synapse-synapse-crown .synapse-glyph img{
            height: 38px;
            width: auto;
            object-fit: contain;
        }

.synapse-synapse-crown .synapse-strand-tier{
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

.synapse-synapse-crown .synapse-trace{
            color: #5c534e;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.35s ease;
            min-width: 0;
        }

.synapse-synapse-crown .synapse-trace:hover{
            color: #eb715c;
            background: #fff2ef;
        }

.synapse-synapse-crown .synapse-trace.active{
            color: #d65943;
            background: #fff2ef;
            font-weight: 600;
        }

@media (max-width: 768px){.synapse-synapse-crown .synapse-strand-tier{
                width: 100%;
                margin-top: 12px;
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 4px;
            }}

.synapse-synapse-crown {
    background: rgb(251, 249, 248);
    background-image: none;
}

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

.tether-tether-root nav,
.tether-tether-root div,
.tether-tether-root section,
.tether-tether-root article,
.tether-tether-root aside,
.tether-tether-root p,
.tether-tether-root h1,
.tether-tether-root h2,
.tether-tether-root h3,
.tether-tether-root h4,
.tether-tether-root h5,
.tether-tether-root h6,
.tether-tether-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.tether-tether-root .tether-matrix-weave{
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

.tether-tether-root{
            background: #141210;
            color: #8c827a;
            padding: 60px 24px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.tether-tether-root .tether-root-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

.tether-tether-root .tether-root-brand{
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

.tether-tether-root .tether-root-vocal{
            font-size: 0.92rem;
            max-width: 360px;
            line-height: 1.6;
        }

.tether-tether-root .tether-root-crest{
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

.tether-tether-root .tether-root-strand{
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 10px;
        }

.tether-tether-root .tether-root-trace{
            color: #8c827a;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.35s ease;
        }

.tether-tether-root .tether-root-trace:hover{
            color: #eb715c;
        }

.tether-tether-root .tether-root-base{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #6b635c;
        }

@media (max-width: 1024px){.tether-tether-root .tether-root-grid{
                grid-template-columns: 1fr 1fr;
            }}

@media (max-width: 768px){.tether-tether-root .tether-root-grid{
                grid-template-columns: 1fr;
            }}