/* ═══════════════════════════════════════════════════════
   BUDDY HADRY — Personal Site
   Design: Dark editorial / Indie builder
   Type: Instrument Serif (italic) + DM Sans + JetBrains Mono
   Palette: Near-black + Electric lime accent
   ═══════════════════════════════════════════════════════ */

/* ─── 1. VARIABLES & RESET ─────────────────────────── */

:root {
  --bg: #070707;
  --bg-elevated: #0f0f0f;
  --bg-hover: #181818;
  --bg-surface: #0c0c0c;

  --text-primary: #EDEDEC;
  --text-secondary: #8A8A8A;
  --text-muted: #4a4a4a;

  --accent: #CDFF50;
  --accent-hover: #B8E63A;
  --accent-dim: rgba(205, 255, 80, 0.07);
  --accent-glow: rgba(205, 255, 80, 0.12);
  --accent-border: rgba(205, 255, 80, 0.15);

  --border: #1a1a1a;
  --border-light: #141414;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --container-max: 1200px;
  --container-pad: 2rem;
  --nav-height: 72px;
  --section-gap: 5rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg);
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── 2. BASE TYPOGRAPHY ───────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  color: var(--text-primary);
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  letter-spacing: -0.03em;
}

h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

/* ─── 3. LAYOUT ────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-gap) 0;
}

.section--sm {
  padding: 3rem 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

/* ─── 4. NAVIGATION ────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-x-link {
  color: var(--accent) !important;
  font-weight: 500;
}

.nav-x-link::after {
  display: none !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  padding-top: var(--nav-height);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.mobile-menu a:hover { color: var(--accent); }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 1001;
  width: 0%;
  transition: width 50ms linear;
}

/* ─── 5. CURSOR GLOW ──────────────────────────────── */

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 255, 80, 0.035) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: left, top;
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* ─── 6. HERO ──────────────────────────────────────── */

.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Atmospheric gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 65%;
  height: 80%;
  background: radial-gradient(ellipse at 60% 40%, rgba(205, 255, 80, 0.035) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.hero-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

/* The name — massive italic serif */
.hero-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-name span {
  display: block;
}

.hero-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: end;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
}

.hero-rotate-wrapper {
  border-left: 1px solid var(--border);
  padding-left: 1.25rem;
}

.hero-rotate-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.375rem;
}

.hero-rotate {
  position: relative;
  height: 2em;
  overflow: hidden;
}

.hero-rotate-item {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-rotate-item.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-description {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 400px;
  margin-bottom: 0;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* ─── 7. TICKER ────────────────────────────────────── */

.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-ticker 45s linear infinite;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 1.5rem;
}

.ticker-item .sep {
  color: var(--accent);
  margin-left: 3rem;
}

@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── 8. BUTTONS & LINKS ──────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.btn:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(205, 255, 80, 0.04);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(205, 255, 80, 0.12);
}

.btn .arrow {
  transition: transform 0.3s var(--ease-out);
  font-size: 0.9em;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.link-arrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s ease, gap 0.25s var(--ease-out);
}

.link-arrow:hover {
  color: var(--accent);
  gap: 0.625rem;
}

/* ─── 9. BUILDS GRID ──────────────────────────────── */

.builds-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.builds-header h2 { margin-bottom: 0; }

.builds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.build-card {
  background: var(--bg);
  padding: 2.25rem;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.build-card:hover {
  background: var(--bg-elevated);
  z-index: 2;
}

.build-card:hover h3 {
  color: var(--accent);
}

.build-card-date {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.build-card h3 {
  margin-bottom: 0.625rem;
  transition: color 0.3s ease;
}

.build-card p {
  font-size: 0.9375rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.build-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(205, 255, 80, 0.1);
}

.build-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Featured card — full width */
.build-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.build-card--featured .build-card-content {
  display: flex;
  flex-direction: column;
}

.build-card--featured h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

/* ─── 9B. TWO-COLUMN SECTION ─────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.two-col-column {
  background: var(--bg);
  padding: 2.5rem;
}

.two-col-column h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.two-col-column > p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.two-col-list {
  display: flex;
  flex-direction: column;
}

.two-col-list a,
.two-col-list span {
  font-size: 0.9375rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, padding-left 0.25s var(--ease-out);
}

.two-col-list a:first-child,
.two-col-list span:first-child {
  border-top: 1px solid var(--border-light);
}

.two-col-list a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.two-col-list a::before,
.two-col-list span::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.two-col-detail {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
}

.two-col-detail:first-child {
  border-top: 1px solid var(--border-light);
}

.two-col-detail strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.two-col-detail span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
  padding: 0;
  border: none;
}

.two-col-detail span::before {
  display: none;
}

.two-col-detail {
  position: relative;
}

.two-col-detail-links {
  position: absolute;
  top: 0.875rem;
  right: 0;
  display: flex;
  gap: 0.75rem;
}

.two-col-detail-links a {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  padding: 0;
  border: none;
}

.two-col-detail-links a::before {
  display: none;
}

.two-col-detail-links a:hover {
  color: var(--accent);
}

/* ─── 10. ABOUT ────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.accent-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.25rem, 7vw, 5.5rem);
  line-height: 1.2;
  color: var(--accent);
  margin-top: 1.5rem;
  letter-spacing: -0.02em;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about-content p.accent-quote {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.about-detail {
  padding-left: 1rem;
  border-left: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.about-detail:hover {
  border-left-color: var(--accent);
}

.about-detail .label {
  display: block;
  margin-bottom: 0.25rem;
}

.about-detail p {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ─── 11. CTA STRIP ───────────────────────────────── */

.cta-strip {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(205, 255, 80, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip h2 {
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── 12. BOOK A CALL PAGE ─────────────────────────── */

.page-header {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2.5rem;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.page-header .lead {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Offerings */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.offering-card {
  background: var(--bg);
  padding: 2.25rem;
  transition: background 0.3s ease;
}

.offering-card:hover {
  background: var(--bg-elevated);
}

.offering-number {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

.offering-card h3 {
  margin-bottom: 0.75rem;
}

.offering-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.offering-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
}

.offering-card ul li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.offering-card ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Receipts */
.receipts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.receipt-card {
  background: var(--bg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s var(--ease-out);
}

.receipt-card:hover {
  background: var(--bg-elevated);
}

.receipt-date {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.receipt-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.receipt-card p {
  font-size: 0.875rem;
  flex-grow: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.receipt-link {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease;
  letter-spacing: 0.02em;
}

.receipt-link:hover { gap: 0.625rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pricing-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.3s ease;
}

.pricing-card:hover {
  background: var(--bg-elevated);
}

.pricing-card h3 {
  margin-bottom: 0.75rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--accent);
  display: block;
  letter-spacing: -0.02em;
}

.pricing-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Calendly */
.calendly-section { text-align: center; }
.calendly-section h2 { margin-bottom: 1rem; }

.calendly-embed-wrapper {
  margin-top: 2rem;
}

/* ─── 13. BLOG INDEX ───────────────────────────────── */

.builds-list {
  display: flex;
  flex-direction: column;
}

.builds-list-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s var(--ease-out);
}

.builds-list-item:first-child {
  border-top: 1px solid var(--border);
}

.builds-list-item:hover {
  padding-left: 1rem;
}

.builds-list-item:hover h3 {
  color: var(--accent);
}

.builds-list-date {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}

.builds-list-content h3 {
  margin-bottom: 0.375rem;
  transition: color 0.25s ease;
}

.builds-list-content p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.builds-list-tags {
  display: flex;
  gap: 0.375rem;
  flex-shrink: 0;
}

/* ─── 14. BLOG POST ────────────────────────────────── */

.post-header {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.post-back {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2rem;
  transition: color 0.2s ease, gap 0.2s ease;
  letter-spacing: 0.02em;
}

.post-back:hover {
  color: var(--accent);
  gap: 0.625rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.post-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.post-header .lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 640px;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.post-body h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.post-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-body li {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.post-body code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  background: var(--bg-elevated);
  padding: 0.125rem 0.4rem;
  border: 1px solid var(--border);
}

.post-body pre {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.post-body pre code {
  background: none;
  border: none;
  padding: 0;
}

.post-body blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.post-body blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.post-body img {
  border: 1px solid var(--border);
  margin: 2rem 0;
}

.post-footer {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.post-share span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-share a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.post-share a:hover { color: var(--accent); }

.post-placeholder {
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
  padding: 3rem;
  text-align: center;
  margin: 2rem 0;
}

.post-placeholder p {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

/* ─── 15. FOOTER ───────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.footer-links a:hover { color: var(--accent); }

/* ─── 16. GRAIN OVERLAY ───────────────────────────── */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 10000;
}

/* ─── 17. ANIMATIONS ──────────────────────────────── */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim > * {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}

.hero-anim > *:nth-child(1) { animation-delay: 0.05s; }
.hero-anim > *:nth-child(2) { animation-delay: 0.15s; }
.hero-anim > *:nth-child(3) { animation-delay: 0.3s; }
.hero-anim > *:nth-child(4) { animation-delay: 0.45s; }

/* ─── 18. RESPONSIVE ──────────────────────────────── */

@media (max-width: 1024px) {
  :root {
    --section-gap: 4rem;
    --container-pad: 1.5rem;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 3.5rem;
    --nav-height: 64px;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .builds-grid {
    grid-template-columns: 1fr;
  }

  .build-card--featured {
    grid-template-columns: 1fr;
  }

  .receipts-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .builds-list-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .builds-list-tags { display: none; }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-name {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .post-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 1.25rem;
    --section-gap: 3rem;
  }

  .hero-name {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .build-card { padding: 1.5rem; }
  .offering-card { padding: 1.5rem; }
}
