/* recent builds */
.builds-sec {
  padding: 60px 48px 60px;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(213,227,235,0.25) 100%);
}
.builds-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.build-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.build-card:hover {
  transform: translateY(-2px);
}
.bc-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.bc-tag { color: var(--teal); }
.bc-meta { color: var(--muted); }
.build-card h3 {
  font-family: 'Inter'; font-weight: 400; font-size: 22px;
  line-height: 1.2; letter-spacing: -0.018em; color: var(--ink);
}
.build-card > p {
  font-size: 16px; color: var(--body); line-height: 1.55;
}
.bc-stats {
  display: flex; gap: 14px; margin-top: 4px;
  padding-top: 14px; border-top: 1px dashed var(--line);
}
.bc-stats .stat {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.bc-stats .k {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.bc-stats .v {
  font-size: 16px; font-weight: 400; color: var(--ink);
  letter-spacing: -0.005em;
}
.bc-stats .v em { font-style: normal; color: var(--teal); }
.build-card .link {
  font-family: 'Inter'; font-size: 13px; color: var(--teal);
  font-weight: 500; margin-top: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms;
}
.build-card .link:hover { border-color: var(--teal); }

/* graduated products */
.grad-sec {
  padding: 60px 48px 60px;
  background: var(--paper);
}
.grad-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.grad-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 250ms ease;
}
.grad-card:hover { transform: translateY(-2px); }
.grad-frame {
  background: linear-gradient(135deg, rgba(212,229,216,0.45), rgba(244,217,203,0.35));
  padding: 32px;
}
.grad-frame.alt {
  background: linear-gradient(135deg, rgba(213,227,235,0.55), rgba(223,213,234,0.4));
}
.grad-screen {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 6px 20px -10px rgba(10,30,33,0.18);
}
.gs-head {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted);
  padding-bottom: 12px; border-bottom: 1px solid var(--line-soft);
}
.gs-head b { color: var(--ink); font-weight: 500; }
.gs-rows {
  display: flex; flex-direction: column; padding-top: 10px; gap: 8px;
}
.gs-row {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--body);
  padding: 6px 0;
}
.gs-row i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted); display: inline-block;
}
.gs-row i.t { background: var(--teal); }
.gs-row span { margin-left: auto; color: var(--muted); }
.gs-row.alt {
  background: rgba(13,92,99,0.06); border-radius: 4px;
  padding: 6px 8px; color: var(--teal);
}
.gs-row.alt span { color: var(--teal); }
.grad-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.grad-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
}
.grad-body h3 {
  font-family: 'Inter'; font-weight: 400; font-size: 26px;
  letter-spacing: -0.02em; color: var(--ink);
}
.grad-body p { font-size: 16px; color: var(--body); line-height: 1.55; }
.grad-body .link {
  font-size: 13px; color: var(--teal); font-weight: 500; margin-top: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms;
}
.grad-body .link:hover { border-color: var(--teal); }
.grad-foot {
  max-width: 800px; margin: 64px auto 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.grad-foot .gf-line { width: 60px; height: 1px; background: var(--line); }
.grad-foot p { font-size: 16px; color: var(--body); }
.grad-foot p a { color: var(--teal); }

/* tweets */
.tweets {
  padding: 60px 48px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(244,217,203,0.3) 50%, var(--paper) 100%);
}
.tweets-intro {
  max-width: 760px; margin: 0 auto 80px;
}
.tweets-intro h2 {
  font-family: 'Inter'; font-weight: 300;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1; letter-spacing: -0.032em;
  color: var(--ink); margin-bottom: 18px;
}
.tweets-intro h2 em { font-style: italic; color: var(--teal); font-weight: 400; }
.tweets-intro p { font-size: 17px; color: var(--body); }
.tweet-scatter {
  max-width: 1200px; margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 32px;
  text-align: left;
}
.tweet {
  font-family: 'Inter'; font-weight: 300;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 14px;
}
.tweet .body {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.25; letter-spacing: -0.015em;
}
.tweet .handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted); letter-spacing: 0.06em;
}
.tweet.big .body { font-size: clamp(26px, 2.4vw, 34px); }
.tweet em { font-style: italic; color: var(--teal); font-weight: 400; }
.tweet.t1 { grid-column: 1 / span 6; grid-row: 1; }
.tweet.t2 { grid-column: 8 / span 5; grid-row: 1; margin-top: 60px; }
.tweet.t3 { grid-column: 2 / span 5; grid-row: 2; margin-top: 40px; }
.tweet.t4 { grid-column: 8 / span 5; grid-row: 2; margin-top: 100px; }
