* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.site-header .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.site-header .site-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.site-nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.25rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #2563eb;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.site-nav a:hover, .site-nav a[aria-current=page] {
  color: #2563eb;
}
.site-nav a:hover::after, .site-nav a[aria-current=page]::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 101;
}
.menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-nav {
    position: fixed;
    inset: 72px 0 0 0;
    z-index: 90;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    background: #ffffff;
    padding: 1rem 1.25rem 2rem;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    overflow-y: auto;
  }
  .site-nav a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
body.nav-open {
  overflow: hidden;
}

.site-footer {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #14141a;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 3.5rem 1.75rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: #2563eb;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-brand .footer-logo img {
  height: 32px;
  width: auto;
}
.footer-brand .footer-tagline {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.55);
}

.footer-widget h3 {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.65rem;
}
.footer-widget li {
  font-size: 0.9rem;
}

.footer-location {
  color: rgba(255, 255, 255, 0.55);
}

.social-links li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.social-links li a svg {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.cta-section {
  background: #2563eb;
  color: #fff;
  padding-block: 3.5rem;
  text-align: center;
}
.cta-section .cta-inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.cta-section h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #fff;
  color: #2563eb;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.cta-button:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.4rem;
  }
}
.about {
  padding-block: 4rem;
  text-align: center;
}
.about .about-inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .about-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;
}
.about h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.about p {
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.about .about-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.about .about-link:hover {
  text-decoration: underline;
}

article.post {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-block: 3rem 4rem;
}
article.post > h1 {
  font-size: 2.25rem;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 0.5rem;
}

.post-date {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.6);
  text-align: center;
  margin-bottom: 2rem;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1a1a1a;
}
.post-content > * + * {
  margin-top: 1.25rem;
}
.post-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  line-height: 1.35;
}
.post-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
}
.post-content p {
  margin-bottom: 0;
}
.post-content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-content a:hover {
  text-decoration: none;
}
.post-content strong {
  font-weight: 600;
}
.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
}
.post-content ul li + li,
.post-content ol li + li {
  margin-top: 0.4rem;
}
.post-content blockquote {
  border-left: 3px solid #2563eb;
  padding-left: 1.25rem;
  margin-inline: 0;
  font-style: italic;
  color: rgba(26, 26, 26, 0.75);
}
.post-content code {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9em;
  background: rgba(37, 99, 235, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}
.post-content pre {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
}
.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.post-content hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.post-content table th,
.post-content table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.post-content table th {
  font-weight: 600;
}
.post-content .post-hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.post-content .post-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.post-content .post-image figcaption {
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.55);
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .post > h1 {
    font-size: 1.75rem;
  }
  .post-content {
    font-size: 1rem;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0b0d12;
  color: #f5f6f8;
  padding: 6rem 1.5rem;
  --hero-shape-color: #2563eb;
  --hero-shape-color-alt: #60a5fa;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}

.hero__content {
  max-width: 42rem;
}

.hero__eyebrow {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
  margin: 0 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: #60a5fa;
}

.hero__heading {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin: 0 0 1.25rem;
  color: #f5f6f8;
}

.hero__heading-accent {
  color: cta__heading;
}

.hero__description {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(245, 246, 248, 0.86);
  margin: 0 0 1rem;
  max-width: 34rem;
}

.hero__muted {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: rgba(245, 246, 248, 0.62);
  margin: 0 0 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.hero__muted::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__btn {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__btn:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}
.hero__btn--primary {
  background: #2563eb;
  color: #ffffff;
}
.hero__btn--primary:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.hero__btn--ghost {
  background: transparent;
  color: #f5f6f8;
  border-color: rgba(245, 246, 248, 0.25);
}
.hero__btn--ghost:hover {
  border-color: #60a5fa;
  color: #60a5fa;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.hero__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__frame {
  color: red;
}

.hero__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #12151c;
}

.hero__badge {
  position: absolute;
  right: -0.5rem;
  bottom: 0.5rem;
  z-index: 2;
  background: #12151c;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero__badge-number {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #60a5fa;
}

.hero__badge-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 246, 248, 0.62);
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero__content {
    max-width: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .hero__visual {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .hero__eyebrow,
  .hero__muted {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 4.5rem 1.25rem;
  }
  .hero__badge {
    right: 0.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__frame::before {
    -webkit-animation: none;
            animation: none;
  }
  .hero__btn {
    -webkit-transition: none;
    transition: none;
  }
}
.stats-cta {
  background-color: #efefef;
  padding: 6rem 1.5rem;
  text-align: center;
}
.stats-cta__inner {
  max-width: 42rem;
  margin: 0 auto;
}
.stats-cta__heading {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: #000d58;
}
.stats-cta__highlight {
  color: #005ac9;
  text-shadow: 0 0 24px rgba(96, 165, 250, 0.5);
}
.stats-cta__description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
  margin: 0 auto 2.25rem;
  max-width: 36rem;
}
.stats-cta__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: black;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  -webkit-box-shadow: 0 0 0 rgba(96, 165, 250, 0);
          box-shadow: 0 0 0 rgba(96, 165, 250, 0);
}
.stats-cta__cta:hover, .stats-cta__cta:focus-visible {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(96, 165, 250, 0.35);
          box-shadow: 0 8px 24px rgba(96, 165, 250, 0.35);
}
.stats-cta__cta span {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.stats-cta__cta:hover span {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
@media (max-width: 40rem) {
  .stats-cta {
    padding: 4.5rem 1.25rem;
  }
}

.about-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-block: 3.5rem 4rem;
}
.about-page .about-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.about-headshot {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-content h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.about-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.about-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.about-content .about-lede {
  font-size: 1.1rem;
  font-weight: 500;
}

.about-cta {
  margin-top: 1.5rem;
}
.about-cta .btn-primary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.about-cta .btn-primary:hover {
  opacity: 0.85;
}

@media (min-width: 640px) {
  .about-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-headshot {
    width: 180px;
    height: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.portfolio-header {
  max-width: 46rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
}

.portfolio-eyebrow {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 0.9rem;
}

.portfolio-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.portfolio-intro {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
  margin: 0;
}

.portfolio-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.filter-btn {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  -webkit-transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.filter-btn:hover {
  border-color: #2563eb;
}
.filter-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.filter-btn.is-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}
.filter-btn.is-active .filter-count {
  color: rgba(255, 255, 255, 0.8);
}

.filter-count {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.45);
}

.portfolio-grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.project-card {
  --card-accent: #21759b;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 1.5rem;
  background: #ffffff;
  -webkit-transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.project-card:hover, .project-card:focus-within {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: var(--card-accent);
  -webkit-box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.project-card.is-hidden {
  display: none;
}
.project-card[data-category=wordpress] {
  --card-accent: #21759b;
}
.project-card[data-category=headless-wordpress] {
  --card-accent: #9333ea;
}
.project-card[data-category=next-js] {
  --card-accent: #111827;
}
.project-card[data-category=astro] {
  --card-accent: #ff5d01;
}

.project-card__tag {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.project-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-accent);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.project-card__name {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin: 0 0 1rem;
  line-height: 1.35;
  word-break: break-word;
}

.project-card__link {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--card-accent);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
.project-card__link span {
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.project-card__link:hover span, .project-card__link:focus-visible span {
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.project-card__link:focus-visible {
  outline: 2px solid var(--card-accent);
  outline-offset: 3px;
}

.portfolio-empty {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  color: rgba(26, 26, 26, 0.55);
  padding: 0 1.5rem 5rem;
}

@media (max-width: 480px) {
  .portfolio-header {
    padding: 3.5rem 1.25rem 2rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project-card,
  .filter-btn,
  .project-card__link span {
    -webkit-transition: none;
    transition: none;
  }
}
.gallery-header {
  max-width: 46rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
}

.gallery-eyebrow {
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 0.9rem;
}

.gallery-title {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin: 0;
}

.gallery-grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.gallery-item {
  margin: 0 0 1rem;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}

.gallery-item__link {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.gallery-item__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.gallery-item__link:hover::after, .gallery-item__link:focus-visible::after {
  opacity: 1;
}
.gallery-item__link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.gallery-item__img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.gallery-item__link:hover .gallery-item__img,
.gallery-item__link:focus-visible .gallery-item__img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.gallery-empty {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  text-align: center;
  color: rgba(26, 26, 26, 0.55);
  padding: 0 1.5rem 5rem;
}
.gallery-empty code {
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  font-size: 0.85em;
  background: rgba(26, 26, 26, 0.06);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .gallery-grid {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
  .gallery-header {
    padding: 3.5rem 1.25rem 2rem;
  }
}
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  background: rgba(10, 10, 12, 0.92);
}
.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox__close:focus-visible,
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__prev {
  left: 1.5rem;
}

.lightbox__next {
  right: 1.5rem;
}

@media (max-width: 560px) {
  .lightbox {
    padding: 1rem;
  }
  .lightbox__prev,
  .lightbox__next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
  }
  .lightbox__prev {
    left: 0.5rem;
  }
  .lightbox__next {
    right: 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item__img,
  .gallery-item__link::after,
  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    -webkit-transition: none;
    transition: none;
  }
}
.blog-index {
  padding-block: 3.5rem 4rem;
}
.blog-index .blog-index-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.blog-index-header {
  text-align: center;
  margin-bottom: 3rem;
}
.blog-index-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.blog-index-subtitle {
  color: rgba(26, 26, 26, 0.6);
  font-size: 1rem;
}

.blog-index-empty {
  text-align: center;
  color: rgba(26, 26, 26, 0.6);
}

.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.post-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.post-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.post-card-image {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.post-card-date {
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 0.4rem;
}

.post-card-title {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.post-card-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.post-card-title a:hover {
  color: #2563eb;
}

.post-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 0.9rem;
}

.post-card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  margin-top: auto;
}
.post-card-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .post-card {
    grid-template-columns: 1fr;
  }
  .post-card-image img {
    aspect-ratio: 16/9;
  }
}
.contact-page {
  padding-block: 3.5rem 2rem;
  text-align: center;
}
.contact-page .contact-inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.contact-header h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.contact-intro {
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.contact-email-link {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}
.contact-email-link:hover {
  text-decoration: underline;
}

.testimonials {
  padding-block: 3rem 4rem;
  background: rgba(37, 99, 235, 0.04);
}
.testimonials .testimonials-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.testimonials h2 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.25rem;
}

.testimonial-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.75rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.testimonial p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 0.9rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a1a;
}
.testimonial cite span {
  font-weight: 400;
  color: rgba(26, 26, 26, 0.6);
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 1.85rem;
  }
  .testimonial {
    padding: 1.25rem 1.35rem;
  }
}/*# sourceMappingURL=style.css.map */