

/* =========================================
   Components: Hero Text - Building order in intelligent systems and subtext
========================================= */

.hero h1 {
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 2rem);
  margin-bottom: 1.2rem;
}

.hero p {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
}

/* =========================================
   Components: Content / Left Column
========================================= */

.content .symbol-header {
  font-size: 1.2rem;
  margin: 2rem 0;
  text-align: center;
  max-width: 24rem;
}

.content .intro {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0.2px currentColor;
}

/* headers within the left column*/
.content h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 2.4rem 0 0.4rem;
  letter-spacing: 0.06em;
  -webkit-text-stroke: 0.2px currentColor;
}

.content .services-list {
  font-size: 0.9rem;
  list-style: none;
  max-width: 30rem;
}

.content .about-list {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}


/* =========================================
   Components: Artifacts (right / center column)
========================================= */

.artifact-feed {
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.artifact-section + .artifact-section {
  margin-top: 2.2rem;
}

.artifact-section h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  -webkit-text-stroke: 0.2px currentColor;
}

.artifact-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Keep original layout */
.artifact-section li {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  padding: 0.1rem 0;
  line-height: 0.85;  
  border-bottom: 0.5px solid var(--clr-divider);
  border-bottom-width: 0.1px; 
  transition: opacity 0.25s ease;
}

/* Make entire row clickable */
.artifact-section li > a {
  display: contents; /* critical magic */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.artifact-section li:hover {
  opacity: 0.6;
}

.artifact-section .date {
  opacity: 0.65;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  text-align: left;
}

/* Right-align the last column */
.artifact-section li span:last-child {
  text-align: right;
}



/* =========================================
   Recommended Signals Table
========================================= */

.section-note {
  font-size: 0.68rem;
  opacity: 1;
  margin-top: -0.2rem;
  margin-bottom: 0.8rem;
}

.signal-table {
  width: 100%;
  font-size: 0.78rem;
}

.signal-header {
  display: grid;
  grid-template-columns: 0.9fr 2.2fr 2.3fr;
  opacity: 0.75;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
  -webkit-text-stroke: 0.2px currentColor;
}

.signal-header span:last-child {
  text-align: right;
}

.signal-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* original layout stays */
.signal-table li {
  display: grid;
  grid-template-columns: 0.9fr 2.2fr 2.2fr;
  border-bottom: 0.5px solid var(--clr-divider);
  padding: 0.45rem 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

/* whole row clickable */
.signal-table li > a {
  display: contents; /* preserves exact grid layout */
  text-decoration: none;
  color: inherit;
}

.signal-table li:hover {
  opacity: 0.75;
}

.signal-table .col-source {
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.signal-table .col-note {
  opacity: 0.75;
  text-align: right;
}







/* =========================================
   Components: Floating Symbols (spawned)
========================================= */

.symbol {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0;
  transform: translateY(6px) scale(0.7);
  transition: opacity 2s ease, transform 2.2s ease;
  will-change: opacity, transform;
  pointer-events: none;
}

.symbol.show {
  opacity: 0.8;
  transform: translateY(0) scale(1);
}



/* =========================================
   Components: CTA Link - Rabbit Hole
========================================= */

.rabbit-hole-link-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.4rem;
}

.rabbit-hole-link {
  text-decoration: none;
  color: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
  -webkit-text-stroke: 0.3px currentColor;
}

.rabbit-hole-link:hover { opacity: 0.6; }






