/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* BODY */
body {
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Syne', sans-serif;
}

.ss-root {
  max-width: 98%;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

/* NAV */
.ss-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 3rem;
}

.ss-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.ss-logo span {
  color: #888;
  font-weight: 400;
}

.ss-nav-links {
  display: flex;
  gap: 2rem;
  font-size: 13px;
  color: #888;
  list-style: none;
}

.ss-nav-links li { cursor: pointer; transition: color 0.15s; list-style: none;}
.ss-nav-links li:hover { color: #1a1a1a; }

.ss-nav-links a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 0;
  margin: 0;
  transition: color 0.15s;
}

.ss-nav-links a:hover {
  color: #1a1a1a;
}

/* HERO */
.ss-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.5rem;
}

.ss-h1 {
  font-size: clamp(42px, 7vw, 36px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 2rem;
}

.ss-h1 em {
  font-style: normal;
  color: #888;
  font-weight: 400;
}

.ss-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

/* CTA */
.ss-cta {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: 0.5px solid #1a1a1a;
  cursor: pointer;
  color: #1a1a1a;
  background: transparent;
  transition: background 0.15s;
  text-decoration: none;
}

.ss-cta:hover { background: #f5f5f5; }

/* SECTION TITLE */
.ss-section-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  padding-bottom: 1rem;
  /*border-bottom: 0.5px solid #e0e0e0;
  margin-bottom: 2rem; */
}

/* TEXT BLOCKS */
.ss-block {
  max-width: 80%;
  margin-bottom: 3rem;
}

.ss-h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.ss-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* GRID (generic) */
.ss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  /* margin-bottom: 4rem; */
}

/* CARD */
.ss-card {
  border: 0.5px solid #e0e0e0;
  padding: 2rem;
}

.ss-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ss-card-text {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

.ss-card-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.ss-card-more {
  display: block;
  text-align: right;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.15s;
}

.ss-card-demo {
  display: block;
  text-align: left;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.15s;
}

.ss-card-more:hover {
  color: black;
}

/* CONTACT BLOCK */
.ss-contact {
  border: 1px solid #e0e0e0;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  /* margin-top: 4rem; */
}

.ss-contact-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  max-width: 700px;
  line-height: 1.3;
}

.ss-contact-text em {
  font-style: normal;
  color: #888;
  font-weight: 400;
}

/* FOOTER */
.ss-footer {
  /* border-top: 0.5px solid #e0e0e0;
  padding-top: 2rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #aaa;
  margin-top: 0.5rem;
}

/* DEMO (future use) */
.ss-demo { margin-bottom: 6rem; }

.ss-query-box {
  background: #f8f8f8;
  border: 0.5px solid #e0e0e0;
  padding: 1.5rem;
  margin-bottom: 1px;
}

.ss-query-code {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #1a1a1a;
  white-space: pre;
}

.ss-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 0.5px solid #e0e0e0;
  border-top: none;
  margin-bottom: 1px;
  transition: background 0.15s;
}

.ss-result-row:hover { background: #f8f8f8; }

.ss-result-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #888;
}

.ss-result-time {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0F6E56;
}

.ss-result-rows {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #aaa;
}

/* STATS (future use) */
.ss-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid #e0e0e0;
  margin-bottom: 6rem;
}

.ss-stat {
  padding: 2rem 1.5rem;
  border-right: 0.5px solid #e0e0e0;
}

.ss-stat:last-child { border-right: none; }

.ss-stat-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ss-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

