/* ==========================================================================
   Design tokens — bold, dark, editorial studio
   ========================================================================== */
:root {
  --bg: #0b0b0c;
  --bg-alt: #131315;
  --surface: #131315;
  --surface-hover: #1c1c1f;
  --border: #2b2b2f;
  --text: #f4f2ec;
  --text-muted: #b1aea6;
  --text-faint: #706d66;
  --accent: #ccff33;
  --accent-dark: #a6d61f;
  --accent-2: #ff5a36;
  --on-accent: #0b0b0c;
  --danger: #ff5a5a;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
  --container: 1180px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Consistent, on-brand keyboard focus ring instead of the default browser
   outline — visible on every interactive element, never suppressed. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-family: var(--font); font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 16px; color: var(--text-muted); }
p.lead { font-size: 1.15rem; color: var(--text-muted); }
em { font-style: italic; color: var(--accent); font-family: var(--font-display); }

.text-accent { color: var(--accent); }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--accent); }

.section {
  padding: 110px 0;
  border-bottom: 1px solid var(--border);
}
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section-head {
  max-width: 680px;
  margin-bottom: 60px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Scroll reveal animation
   ========================================================================== */
.reveal-io {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-io.in-view { opacity: 1; transform: translateY(0); }
.reveal-io.d1 { transition-delay: 0.08s; }
.reveal-io.d2 { transition-delay: 0.16s; }
.reveal-io.d3 { transition-delay: 0.24s; }
.reveal-io.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-io { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 999;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Marquee ticker
   ========================================================================== */
.marquee {
  overflow: hidden;
  background: var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  gap: 48px;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-accent);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "\2726";
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-primary:hover { box-shadow: 0 14px 30px -10px rgba(204, 255, 51, 0.4); background: #d9ff5c; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface-hover); border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 12, 0.82);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-fdx {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn span.show-mobile { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle svg path { transition: d 0.2s var(--ease); }

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 14px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta .btn span.hide-mobile { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--text); }
.hero-stat span { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: #000;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual .code-window { height: 100%; display: flex; flex-direction: column; }
.code-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.code-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.code-dot.live { background: var(--accent); }
.code-topbar span.code-label {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.code-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #8f8b82;
  flex: 1;
  overflow: hidden;
}
.code-body .ln { display: flex; gap: 16px; margin-bottom: 9px; white-space: pre; opacity: 0; animation: typeLine 0.4s ease forwards; }
.code-body .ln:nth-child(1) { animation-delay: 0.1s; }
.code-body .ln:nth-child(2) { animation-delay: 0.25s; }
.code-body .ln:nth-child(3) { animation-delay: 0.4s; }
.code-body .ln:nth-child(4) { animation-delay: 0.55s; }
.code-body .ln:nth-child(5) { animation-delay: 0.7s; }
.code-body .ln:nth-child(6) { animation-delay: 0.85s; }
.code-body .ln:nth-child(7) { animation-delay: 1.0s; }
.code-body .ln:nth-child(8) { animation-delay: 1.1s; }
.code-body .ln:nth-child(9) { animation-delay: 1.2s; }
.code-body .ln:nth-child(10) { animation-delay: 1.35s; }
@keyframes typeLine {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
.code-body .num { color: #3f3c37; width: 16px; text-align: right; flex-shrink: 0; }
.tk-key { color: var(--accent-2); }
.tk-str { color: var(--accent); }
.tk-fn { color: #7ac8ff; }
.tk-com { color: #55524b; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 20px 28px; }
  /* Long CTA labels ("Book a free intro call") don't fit two-up on narrow
     phones with nowrap text — stack them full-width instead of clipping. */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; }
}

/* ==========================================================================
   Trust badges & logo strip
   ========================================================================== */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.trust-badge svg { width: 15px; height: 15px; color: var(--accent); }

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.logo-chip {
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.logo-chip:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   Grids
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
/* Opt-in hairline mosaic — only use on grids whose direct children all have an opaque background */
.grid.grid-mosaic { gap: 1px; background: var(--border); }

.card {
  background: var(--bg);
  border: none;
  border-radius: 0;
  padding: 36px 30px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.card:hover {
  background: var(--accent);
  color: var(--on-accent);
}
.card:hover h3,
.card:hover p { color: var(--on-accent); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.card:hover .card-icon { border-color: var(--on-accent); color: var(--on-accent); }
.card-icon svg { width: 22px; height: 22px; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Reasons / why-us list */
.reason {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.reason:last-child { border-bottom: none; }
.reason-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reason-icon svg { width: 20px; height: 20px; }
.reason h3 { margin-bottom: 4px; font-size: 1.05rem; }
.reason p { margin: 0; }

/* Project cards */
.project-card {
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.project-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--on-accent);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-thumb { transform: scale(1.04); }
.grad-1 { background: var(--accent); }
.grad-2 { background: #7ac8ff; }
.grad-3 { background: var(--accent-2); color: #fff; }
.grad-4 { background: #ffb84d; }
.grad-5 { background: #b98bff; color: #fff; }
.grad-6 { background: #4de3b0; }

.project-body { padding: 26px 4px 6px; flex: 1; display: flex; flex-direction: column; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.project-link { margin-top: auto; font-weight: 600; font-size: 0.88rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.03em; font-family: var(--font-mono); font-size: 0.76rem; }
.project-link svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
.project-card:hover .project-link svg { transform: translate(3px, -3px); }

/* ==========================================================================
   Process / Steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 32px 28px 36px;
  background: var(--bg);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quote-card {
  background: var(--bg);
  padding: 36px 30px;
  border-top: 2px solid var(--accent);
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); }
.stars svg { width: 15px; height: 15px; }
.quote-card p.quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}
.quote-person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--surface-hover);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem;
  flex-shrink: 0;
}
.quote-person strong { display: block; font-size: 0.88rem; font-weight: 600; }
.quote-person span { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.03em; }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats-band {
  background: var(--accent);
  padding: 60px 40px;
  color: var(--on-accent);
}
.stats-band .grid { text-align: center; background: rgba(11,11,12,0.15); }
.stats-band .grid > div { background: var(--accent); padding: 12px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--on-accent);
}
.stat-label { font-family: var(--font-mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(11,11,12,0.65); margin-top: 6px; }

/* ==========================================================================
   Guarantee / security band
   ========================================================================== */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee-card {
  text-align: center;
  padding: 36px 22px;
  background: var(--bg);
}
.guarantee-icon {
  width: 50px; height: 50px;
  margin: 0 auto 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.guarantee-icon svg { width: 24px; height: 24px; }
.guarantee-card h3 { font-size: 1rem; margin-bottom: 8px; }
.guarantee-card p { font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}
.price-card.featured h3,
.price-card.featured p,
.price-card.featured .price-amount span,
.price-card.featured .price-list li { color: var(--on-accent); }
.price-card.featured .tag { border-color: var(--on-accent); color: var(--on-accent); }
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: 0; right: 0;
  background: var(--on-accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.price-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; margin: 10px 0 4px; }
.price-amount span { font-family: var(--font); font-size: 0.95rem; font-weight: 500; color: var(--text-faint); }
.price-list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.price-list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--text-muted); align-items: flex-start; }
.price-list svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.price-card.featured .price-list svg { color: var(--on-accent); }
.price-card.featured .btn-primary { background: var(--on-accent); color: var(--accent); }
.price-card.featured .btn-ghost { border-color: var(--on-accent); color: var(--on-accent); }
.price-card.featured .btn-ghost:hover { background: rgba(11,11,12,0.1); }

/* ==========================================================================
   Forms — underline style
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); }
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 10px 2px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b1aea6' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 2px center; background-size: 16px; }
.field select option { background: var(--bg); color: var(--text); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field .hint { font-size: 0.78rem; color: var(--text-faint); }
.form-note {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 16px;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--accent);
  color: var(--on-accent);
}
.form-status.visible { display: block; animation: fadeUp 0.4s ease both; }
.form-status.error { background: var(--danger); color: #fff; }

/* ==========================================================================
   Contact info blocks
   ========================================================================== */
.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.info-icon svg { width: 19px; height: 19px; }

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute; left: 4px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -34px; top: 4px;
  width: 9px; height: 9px;
  background: var(--accent);
}
.timeline-year { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; display: block; letter-spacing: 0.03em; }

/* ==========================================================================
   Skills bars
   ========================================================================== */
.skill { margin-bottom: 24px; }
.skill-head { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 10px; }
.skill-head span:first-child { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.8rem; }
.skill-head span:last-child { color: var(--text-faint); font-family: var(--font-mono); }
.skill-bar { height: 3px; background: var(--border); overflow: hidden; }
.skill-bar i {
  display: block; height: 100%; background: var(--accent);
  width: 0;
  transition: width 1.1s var(--ease);
}
.skill-bar.in-view i { width: var(--target, 0%); }

/* ==========================================================================
   Values grid
   ========================================================================== */
.value-card {
  padding: 30px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { margin: 0; font-size: 0.92rem; }

/* ==========================================================================
   CTA band — full bleed
   ========================================================================== */
.cta-band {
  background: var(--accent);
  padding: 80px 40px;
  text-align: center;
  color: var(--on-accent);
  position: relative;
}
.cta-band h2 { color: var(--on-accent); }
.cta-band p { color: rgba(11,11,12,0.7); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--on-accent); color: var(--accent); }
.cta-band .btn-primary:hover { background: #000; }
.cta-band .btn-ghost { border-color: rgba(11,11,12,0.4); color: var(--on-accent); }
.cta-band .btn-ghost:hover { background: rgba(11,11,12,0.1); border-color: var(--on-accent); color: var(--on-accent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 72px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-bottom: 20px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.2s ease;
}
.social-links a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.social-links svg { width: 17px; height: 17px; }

/* ==========================================================================
   Page hero (subpages)
   ========================================================================== */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-head { margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.breadcrumb a:hover { color: var(--accent); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.reveal { animation: fadeUp 0.7s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.2rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; }
