/* PostCSS + Tailwind entry point.
   Run: npm run build:css
   Output: css/style.css (do not edit directly) */

.journal-page {
  width: 100%;
  padding: 3rem 1rem 4rem;
}

.journal-page__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.journal-page__heading {
  display: grid;
  gap: 0.75rem;
}

.journal-page__label {
  margin: 0;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.journal-page__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.journal-page__description {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

.journal-page__controls {
  display: grid;
  gap: 1rem;
}

.journal-index__search {
  display: grid;
  gap: 0.5rem;
}

.journal-index__search label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.journal-index__search input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1rem;
}

.journal-index__search input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.journal-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.chip.is-active {
  border-color: var(--color-primary);
  color: var(--color-text);
  background: rgba(157, 0, 255, 0.12);
}

.journal-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.journal-card {
  height: 100%;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.journal-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 6px 6px 0 var(--color-border);
}

.journal-card__link-wrap {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.journal-card__thumb {
  aspect-ratio: 16 / 9;
  border-bottom: 2px solid var(--color-border);
  overflow: hidden;
}

.journal-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journal-card__content {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  align-content: start;
}

.journal-card__meta {
  margin: 0;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.journal-card__title {
  margin: 0;
  font-size: clamp(1.1rem, 2.3vw, 1.4rem);
  line-height: 1.25;
}

.journal-card__summary {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.journal-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.journal-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

html.reduced-motion *,
html.reduced-motion *::before,
html.reduced-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

@media (max-width: 1024px) {
  .journal-page {
    padding-block: 2.5rem 3.5rem;
  }

  .journal-page__inner {
    gap: 1.5rem;
  }
}

/* ============================================================
   JOURNAL ARTICLE PAGE — refreshed layout (homepage-aligned)
   ============================================================ */

.journal-article-shell {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, var(--space-6));
  padding-block: var(--space-16);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--color-primary);
  z-index: 200;
  pointer-events: none;
}

/* Two-column layout removed — single centred column only */

.journal-article-grid {
  display: block;
}

/* reading column width target: ~680–760px */

.journal-article {
  max-width: 720px;
  margin-inline: auto;
}

.journal-article__hero {
  padding-bottom: var(--space-12);
  margin-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.journal-article__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.journal-article__label::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 2px;
  opacity: 0.8;
}

.journal-article__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: var(--space-4);
  color: var(--color-text);
}

.journal-article__meta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.journal-article__meta-sep {
  opacity: 0.6;
}

.journal-article__hero-media {
  margin-top: var(--space-8);
  border: 2px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 4px 4px 0px #111111;
}

.journal-article__hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  max-height: 420px;
}

.journal-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-6);
}

.journal-article__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border: 1px solid rgba(0, 230, 118, 0.22);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  text-decoration: none;
}

.journal-article__content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
}

.journal-article__content p {
  margin-bottom: 1.25rem;
}

.journal-article__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  text-transform: uppercase;
}

.journal-article__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-transform: uppercase;
}

.journal-article__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.journal-article__content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: 0.1em 0.35em;
  color: var(--color-primary);
}

.journal-article__content pre {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  padding: 1.25rem 1.35rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.journal-article__content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-text);
  font-size: 0.85rem;
  line-height: 1.65;
}

.journal-article__content blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
  color: var(--color-text-muted);
  margin: 1.75rem 0;
}

.journal-article__content ul,
.journal-article__content ol {
  padding-left: 1.5rem;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.journal-article__content li {
  color: var(--color-text-muted);
}

/* Sidebar and TOC removed — layout is single-column centred prose */

.journal-article__sidebar,
.journal-toc,
.journal-toc__title,
.journal-toc__list,
.journal-toc__item--h3,
.journal-toc__link {
  display: none;
}

/* Bottom section */

.journal-article__bottom {
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--color-border);
}

.journal-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}

.journal-article__back:hover {
  color: var(--color-primary);
}

/* Single-column layout applies at all breakpoints — no override needed */

@media (max-width: 640px) {
  .journal-article-shell {
    padding-inline: 1.25rem;
    padding-block: var(--space-12);
  }
  .journal-article__title {
    font-size: 1.9rem;
  }
  .journal-article__content {
    font-size: var(--text-base);
  }
  .journal-article__content h2 {
    font-size: 1.3rem;
  }
  .journal-article__content h3 {
    font-size: 1.08rem;
  }
  .journal-article__content pre {
    padding: 1rem;
  }
}

/* Blog refresh additions */

.journal-index__search {
  margin: 1rem 0;
}

.journal-index__search label {
  display: block;
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-bottom: .35rem;
}

.journal-index__search input {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}

.journal-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.chip {
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .75rem;
  text-decoration: none;
}

.chip.is-active,
.chip:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.journal-card img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.journal-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .5rem;
}

.journal-card__tags a {
  font-size: .74rem;
  color: var(--color-text-muted);
}

.journal-card__cta {
  margin-top: .8rem;
  font-weight: 700;
  display: inline-flex;
}

.journal-card__share {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
  font-size: .8rem;
}

.journal-index__newsletter {
  margin-top: 2rem;
  border: 1px solid var(--color-border);
  padding: 1.2rem;
  background: var(--color-surface);
}

.journal-index__newsletter h2 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.journal-index__list {
  gap: 0.9rem;
}

@media (max-width: 768px) {
  .journal-index__list {
    grid-template-columns: 1fr;
  }

  .journal-card__content {
    padding: 0.9rem;
  }
}

/* ============================================================
   BLOG POST PAGE — single-column centred layout
   ============================================================ */

.post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  display: inline-block;
}

.post__back:hover {
  color: var(--color-primary);
}

.post__header {
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--color-border);
}

.post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.post__sep {
  opacity: 0.5;
}

.post__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1rem;
  border-bottom: 4px solid var(--color-primary);
  padding-bottom: 0.75rem;
}

.post__summary {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: 1.25rem;
}

.post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.post__tags a {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  text-decoration: none;
  border: 1px solid var(--color-border);
  padding: 0.2rem 0.55rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.post__tags a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.post__share {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.post__share a {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-decoration: none;
  border: 1px solid var(--color-border);
  padding: 0.3rem 0.65rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.post__share a:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.post__body {
  margin-bottom: 3rem;
}

/* Hero image — shown between header and body */

.post__hero-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  border: 2px solid var(--color-border);
  box-shadow: 4px 4px 0px #111111;
  margin-bottom: 2.5rem;
  max-height: 400px;
}

/* Body prose — headings, code, lists */

.post__body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 3rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-text);
  border-left: 4px solid #9D00FF;
  padding-left: 1rem;
}

.post__body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
}

.post__body p {
  margin-bottom: 1.35rem;
  line-height: 1.8;
}

.post__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post__body code {
  font-family: var(--font-mono, monospace);
  font-size: 0.87em;
  background: rgba(157, 0, 255, 0.08);
  border: 1px solid var(--color-border);
  padding: 0.1em 0.35em;
  color: var(--color-primary);
  word-break: break-word;
}

.post__body pre {
  background: #0d0d0d;
  border: 2px solid var(--color-border);
  padding: 1.25rem 1.35rem;
  overflow-x: auto;
  margin: 1.75rem 0;
  box-shadow: 4px 4px 0px #111111;
}

.post__body pre code {
  background: none;
  border: none;
  padding: 0;
  color: #e2e2e2;
  font-size: 0.85rem;
  line-height: 1.7;
}

.post__body ul,
.post__body ol {
  padding-left: 1.5rem;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post__body li {
  line-height: 1.7;
  color: var(--color-text-muted);
}

.post__body blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
  color: var(--color-text-muted);
  margin: 1.75rem 0;
  font-style: italic;
}

.post__related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.post__related h2 {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.blog-related-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-related-card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.blog-related-card:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.post__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.post__share--bottom {
  margin-bottom: 1.5rem;
}

.post__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.post__nav-link {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 0.45rem 0.9rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.post__nav-link:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .post__title {
    font-size: 2rem;
  }

  .post__body h2 {
    font-size: 1.4rem;
  }

  .post__body h3 {
    font-size: 1.05rem;
  }

  .post__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: "JetBrains Mono", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

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

:focus-visible {
    outline: 2px solid #9D00FF;
    outline-offset: 2px;
  }

.\!container {
  width: 100% !important;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {

  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {

  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {

  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {

  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {

  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.-left-1 {
  left: -0.25rem;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-4 {
  bottom: 1rem;
}

.left-4 {
  left: 1rem;
}

.right-4 {
  right: 1rem;
}

.top-0 {
  top: 0px;
}

.top-4 {
  top: 1rem;
}

.-z-10 {
  z-index: -10;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.m-0 {
  margin: 0px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-auto {
  margin-left: auto;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-9 {
  height: 2.25rem;
}

.h-\[38\%\] {
  height: 38%;
}

.min-h-\[500px\] {
  min-height: 500px;
}

.min-h-screen {
  min-height: 100vh;
}

.w-1\.5 {
  width: 0.375rem;
}

.w-10 {
  width: 2.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-9 {
  width: 2.25rem;
}

.w-\[115\%\] {
  width: 115%;
}

.w-full {
  width: 100%;
}

.min-w-max {
  min-width: max-content;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.max-w-xl {
  max-width: 36rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink-0 {
  flex-shrink: 0;
}

.-rotate-2 {
  --tw-rotate: -2deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-skew-x-12 {
  --tw-skew-x: -12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes marquee {

  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

.resize {
  resize: both;
}

.list-none {
  list-style-type: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-x-clip {
  overflow-x: clip;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-r-2 {
  border-right-width: 2px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-ink {
  --tw-border-opacity: 1;
  border-color: rgb(17 17 17 / var(--tw-border-opacity, 1));
}

.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}

.bg-accent {
  --tw-bg-opacity: 1;
  background-color: rgb(0 230 118 / var(--tw-bg-opacity, 1));
}

.bg-bg {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 240 / var(--tw-bg-opacity, 1));
}

.bg-ink {
  --tw-bg-opacity: 1;
  background-color: rgb(17 17 17 / var(--tw-bg-opacity, 1));
}

.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(157 0 255 / var(--tw-bg-opacity, 1));
}

.bg-surface {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.p-0 {
  padding: 0px;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.text-center {
  text-align: center;
}

.font-body {
  font-family: "Satoshi", "Space Grotesk", sans-serif;
}

.font-display {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
}

.font-mono {
  font-family: "JetBrains Mono", monospace;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[72px\] {
  font-size: 72px;
}

.text-\[9px\] {
  font-size: 9px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.leading-\[0\.9\] {
  line-height: 0.9;
}

.leading-none {
  line-height: 1;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-ink {
  --tw-text-opacity: 1;
  color: rgb(17 17 17 / var(--tw-text-opacity, 1));
}

.text-muted {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity, 1));
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgb(157 0 255 / var(--tw-text-opacity, 1));
}

.text-surface {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-surface\/90 {
  color: rgb(255 255 255 / 0.9);
}

.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}

.no-underline {
  text-decoration-line: none;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-\[0\.03\] {
  opacity: 0.03;
}

.opacity-\[0\.04\] {
  opacity: 0.04;
}

.shadow-brutal {
  --tw-shadow: 6px 6px 0px #111111;
  --tw-shadow-colored: 6px 6px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

/* =============================================
   CUSTOM CSS — components that need more than utilities
   ============================================= */

/* --- Base --- */

/* Scrollbar */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #F4F4F0;
}

::-webkit-scrollbar-thumb {
  background: #111111;
}

html.dark ::-webkit-scrollbar-track {
  background: #0A0A0A;
}

html.dark ::-webkit-scrollbar-thumb {
  background: #F4F4F0;
}

/* --- Skip link --- */

.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  background: var(--color-accent);
  color: #111111;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* --- Custom cursor dot --- */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #9D00FF;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-200px, -200px, 0);
  display: none;
}

@media (pointer: fine) {
  .cursor-dot {
    display: block;
  }

  body.cursor-custom {
    cursor: none;
  }

  body.cursor-custom a,
  body.cursor-custom button,
  body.cursor-custom [role="button"] {
    cursor: none;
  }

  .cursor-dot.is-hover {
    background: var(--color-accent);
    width: 14px;
    height: 14px;
    margin: -3px 0 0 -3px;
  }
}

/* --- Theme icon toggling --- */

.theme-toggle__sun {
  display: none;
}

.theme-toggle__moon {
  display: block;
}

html.dark .theme-toggle__sun {
  display: block;
}

html.dark .theme-toggle__moon {
  display: none;
}

/* --- Mobile nav menu --- */

.nav__mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 65px;
  background: #FFFFFF;
  border-bottom: 2px solid #111111;
  z-index: 40;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}

html.dark .nav__mobile-menu {
  background: #1A1A1A;
  border-color: #F4F4F0;
}

.nav__mobile-menu.is-open {
  display: flex;
}

.nav__mobile-menu a {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  padding-bottom: 1rem;
}

html.dark .nav__mobile-menu a {
  color: #F4F4F0;
  border-color: rgba(244, 244, 240, 0.15);
}

/* --- Hero KE particle field --- */

.hero__ke-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__ke-particle {
  position: absolute;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: #9D00FF;
  opacity: 0.07;
  will-change: transform;
  user-select: none;
}

html.dark .hero__ke-particle {
  opacity: 0.12;
}

/* --- Hero "Last Updated" badge dot --- */

.hero-badge__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  flex-shrink: 0;
  animation: hero-badge-pulse 1.4s ease-in-out infinite;
}

@keyframes hero-badge-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.25;
    transform: scale(0.65);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge__dot {
    animation: none;
  }
}

/* --- Marquee animation --- */

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .animate-marquee,
  .ghdash__repo-marquee {
    animation: none !important;
    transform: none !important;
  }

  .bento-cell,
  .bento-cell-content,
  .bento-arrow,
  .bento-cell__inner {
    transition: none !important;
  }
}

/* --- Orbit / Now section --- */

.orbit-container {
  position: relative;
  width: 560px;
  height: 560px;
  max-width: min(90vw, 560px);
  max-height: min(90vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-path {
  position: absolute;
  border: 1px dashed rgba(17, 17, 17, 0.25);
  border-radius: 50% !important;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

html.dark .orbit-path {
  border-color: rgba(244, 244, 240, 0.25);
}

.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  border: 2px solid #111111;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #111111;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transform: translate(calc(-50% + 0px), calc(-50% + 0px));
  will-change: transform;
  z-index: 10;
}

html.dark .orbit-node {
  background: #1A1A1A;
  border-color: #F4F4F0;
  color: #F4F4F0;
}

.orbit-node:hover,
.orbit-node.is-expanded,
.orbit-node.is-static-selected {
  background: #9D00FF;
  color: #FFFFFF;
  border-color: #9D00FF;
  box-shadow: 4px 4px 0px #111111;
}

.orbit-node.is-expanded {
  z-index: 40;
  max-width: min(82vw, 360px);
  white-space: normal;
  text-align: left;
  background: #F4F4F0;
  color: #111111;
  border-color: #111111;
  box-shadow: 8px 8px 0 #111111;
  padding: 0.85rem 1rem;
}

html.dark .orbit-node.is-expanded {
  background: #111111;
  color: #F4F4F0;
  border-color: #F4F4F0;
  box-shadow: 8px 8px 0 #F4F4F0;
}

.orbit-container.has-expanded .orbit-center {
  opacity: 0.08;
}

.orbit-container.has-expanded .orbit-node:not(.is-expanded) {
  opacity: 0.2;
}

.orbit-node__close {
  display: none;
}

.orbit-node__details {
  display: none;
}

.orbit-node.is-expanded .orbit-node__label {
  display: none;
}

.orbit-node.is-expanded .orbit-node__close {
  display: inline;
  font-weight: 700;
  margin-right: 0.5rem;
}

.orbit-node.is-expanded .orbit-node__details {
  display: block;
  font-size: 0.6rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  margin-top: 0.25rem;
  text-align: left;
}

.orbit-node.is-expanded .orbit-node__details p {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.orbit-node.is-expanded .orbit-node__details ul {
  padding-left: 1rem;
  list-style: disc;
}

.orbit-node.is-expanded .orbit-node__details li {
  margin-bottom: 0.2rem;
}

.orbit-static-panel {
  background: #FFFFFF;
  border: 2px solid #111111;
  padding: 1rem;
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

html.dark .orbit-static-panel {
  background: #1A1A1A;
  border-color: #F4F4F0;
}

.orbit-static-panel.is-visible {
  opacity: 1;
}

.orbit-static-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.orbit-static-panel__title {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111111;
}

html.dark .orbit-static-panel__title {
  color: #F4F4F0;
}

.orbit-static-panel__close {
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #757575;
  background: transparent;
  border: none;
}

.orbit-static-panel__close:hover {
  color: #111111;
}

html.dark .orbit-static-panel__close:hover {
  color: #F4F4F0;
}

.orbit-static-panel__list {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.8rem;
  color: #111111;
  line-height: 1.6;
}

html.dark .orbit-static-panel__list {
  color: #F4F4F0;
}

/* --- Bento grid (projects) --- */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid #111111;
  background-color: #111111;
}

html.dark .bento-grid {
  border-color: #F4F4F0;
  background-color: #F4F4F0;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-cell-hero {
    grid-column: span 2 !important;
  }

  .bento-cell-wide {
    grid-column: span 2 !important;
  }

  .bento-cell-tall {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

.ghdash__heatmap-cell {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4rem) !important;
  }

  .section-header {
    gap: 0.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .section-header>.ml-auto {
    margin-left: 0;
  }

  .orbit-container {
    width: min(92vw, 420px);
    height: min(92vw, 420px);
  }

  .orbit-node {
    font-size: 0.7rem;
    padding: 0.56rem 0.75rem;
  }

  .orbit-node.is-expanded {
    max-width: min(92vw, 320px);
    left: 50% !important;
    top: 50% !important;
  }

  #theme-toggle,
  #mobile-menu-button,
  .nav__mobile-menu a,
  .footer__icon,
  #back-to-top {
    min-height: 44px;
    min-width: 44px;
  }

  .ghdash__card,
  .ghdash__card--heatmap {
    padding: 1rem;
  }

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

  .ghdash__repo-item {
    padding: 0.85rem;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-cell-hero,
  .bento-cell-wide,
  .bento-cell-tall {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

.bento-cell {
  background-color: #FFFFFF;
  border: 1px solid #111111;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

html.dark .bento-cell {
  background: #1A1A1A;
  border-color: #F4F4F0;
  color: #F4F4F0;
}

/* === Hover: Mode A — light surface card ===
   No background change. Lift via shadow, title turns brand purple,
   arrow turns green. Tags remain neutral. */

.bento-cell:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.bento-cell:hover .bento-title {
  color: var(--color-brand);
}

html.dark .bento-cell:hover {
  background: #1A1A1A;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

html.dark .bento-cell:hover .bento-title {
  color: var(--color-brand-tint);
}

/* === Hover: Mode C — accent (purple) surface card ===
   Hover deepens to near-black. Text stays white. */

.bento-cell--accent {
  background-color: var(--color-brand);
  color: #FFFFFF;
  border-color: var(--color-brand);
}

.bento-cell--accent:hover {
  background-color: #111111;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* === Dark surface card — resting state ===
   Uses deep purple-tinted dark instead of pure black,
   tying the tile to the purple brand identity. */

.bento-cell--dark {
  background-color: var(--color-dark-surface);
  color: #FFFFFF;
}

html.dark .bento-cell--dark {
  background-color: #0A0614;
  color: #F4F4F0;
}

.bento-cell--dark:hover {
  background-color: var(--color-dark-surface);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157, 0, 255, 0.2);
}

.bento-cell--dark:hover .bento-title {
  color: #FFFFFF;
}

.bento-cell-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-cell-wide {
  grid-column: span 2;
}

.bento-cell-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-cell__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

.bento-cell:hover .bento-cell__inner {
  transform: translateX(4px);
}

.bento-arrow {
  transition: transform 0.2s ease, color 0.2s ease;
  font-size: 1.75rem;
  line-height: 1;
}

/* Arrow: always turns green on hover (the consistent interaction signal) */

.bento-cell:hover .bento-arrow {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.bento-cell--dark:hover .bento-arrow {
  color: var(--color-accent);
}

.bento-cell--accent:hover .bento-arrow {
  color: var(--color-accent);
}

.bento-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  background: #111111;
  color: #FFFFFF;
  display: inline-block;
}

html.dark .bento-num {
  background: #F4F4F0;
  color: #111111;
}

.bento-cell:hover .bento-num {
  background: #111111;
  color: #FFFFFF;
}

.bento-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border: 1px solid #111111;
  background: #FFFFFF;
  color: #111111;
  display: inline-block;
  transition: color 0.2s ease, border-color 0.2s ease;
}

html.dark .bento-tag {
  border-color: #F4F4F0;
  background: #1A1A1A;
  color: #F4F4F0;
}

/* Tags: stay neutral on all hover states — no green text (contrast failure) */

.bento-cell:hover .bento-tag {
  background: #FFFFFF;
  color: #111111;
  border-color: #111111;
}

.bento-cell--dark:hover .bento-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.bento-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #757575;
}

.bento-cell:hover .bento-status {
  color: rgba(17, 17, 17, 0.7);
}

.bento-cell--dark:hover .bento-status {
  color: rgba(255, 255, 255, 0.5);
}

/* Light mode hover — body text stays neutral, heading lifts to brand purple.
   Green tags/text are removed (WCAG contrast failure). */

html:not(.dark) .bento-cell:hover {
  background-color: #FFFFFF;
}

html:not(.dark) .bento-cell:hover .bento-title {
  color: var(--color-brand);
}

/* Body text on light hover: stays near-black (readable), not purple */

html:not(.dark) .bento-cell:hover .bento-cell-content p {
  color: rgba(17, 17, 17, 0.75);
}

html:not(.dark) .bento-cell:hover .bento-arrow {
  color: var(--color-accent);
}

/* Tags: keep neutral border/text — green border fails contrast */

html:not(.dark) .bento-cell:hover .bento-tag {
  color: #111111;
  border-color: #111111;
  background: #FFFFFF;
}

.pattern-dots {
  background-image: radial-gradient(#111111 1px, transparent 1px);
  background-size: 16px 16px;
}

html.dark .pattern-dots {
  background-image: radial-gradient(#F4F4F0 1px, transparent 1px);
}

.pattern-stripes {
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(17, 17, 17, 0.07) 10px, rgba(17, 17, 17, 0.07) 20px);
}

/* --- Project modal --- */

.puzzle-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.puzzle-modal.is-open {
  display: flex;
}

.puzzle-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
}

html.dark .puzzle-modal__backdrop {
  background: rgba(10, 10, 10, 0.8);
}

.puzzle-modal__dialog {
  position: relative;
  background: #FFFFFF;
  border: 2px solid #111111;
  box-shadow: 8px 8px 0px #111111;
  width: 100%;
  max-width: 32rem;
  padding: 2rem;
  z-index: 10;
}

html.dark .puzzle-modal__dialog {
  background: #1A1A1A;
  border-color: #F4F4F0;
  box-shadow: 8px 8px 0px #F4F4F0;
}

.puzzle-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #111111;
  background: #FFFFFF;
  color: #111111;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.puzzle-modal__close:hover {
  background: var(--color-accent);
}

html.dark .puzzle-modal__close {
  background: #1A1A1A;
  border-color: #F4F4F0;
  color: #F4F4F0;
}

.puzzle-modal__eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #757575;
  margin-bottom: 0.5rem;
}

.puzzle-modal__title {
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  color: #111111;
}

html.dark .puzzle-modal__title {
  color: #F4F4F0;
}

.puzzle-modal__description,
.puzzle-modal__tried,
.puzzle-modal__learned {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #111111;
  margin-bottom: 0.75rem;
}

html.dark .puzzle-modal__description,
html.dark .puzzle-modal__tried,
html.dark .puzzle-modal__learned {
  color: #F4F4F0;
}

.puzzle-modal__stack-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #757575;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.puzzle-modal__stack {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #111111;
  margin-bottom: 1rem;
}

html.dark .puzzle-modal__stack {
  color: #F4F4F0;
}

.puzzle-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.puzzle-modal__link {
  background: #111111;
  color: #FFFFFF;
  border: 2px solid #111111;
  padding: 0.5rem 1rem;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 4px 4px 0px #111111;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.puzzle-modal__link:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #111111;
}

/* --- GitHub dashboard --- */

.ghdash__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid #111111;
  border-bottom: 2px solid #111111;
  background: #111111;
  gap: 2px;
}

html.dark .ghdash__top {
  border-color: #F4F4F0;
  background: #F4F4F0;
}

@media (min-width: 768px) {
  .ghdash__top {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ghdash__stat {
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

html.dark .ghdash__stat {
  background: #1A1A1A;
}

@media (max-width: 767px) {
  .ghdash__stat {
    min-height: 90px;
    padding: 0.75rem 1rem;
  }

  .ghdash__stat-value {
    font-size: clamp(1.75rem, 12vw, 2.5rem);
    padding-top: 0.4rem;
  }

  .ghdash__middle-row {
    border-width: 1px;
  }

  .ghdash__status {
    padding: 1rem;
    gap: 1rem;
  }

  .ghdash__card--heatmap {
    padding: 1rem;
  }

  .ghdash__grid {
    border-width: 1px;
  }

  .ghdash__card {
    padding: 1rem;
  }

  .ghdash__duo {
    gap: 0.75rem;
  }

  .ghdash__repo-marquee-wrap {
    padding: 0.7rem;
  }

  .ghdash__repo-list {
    gap: 0.55rem;
  }
}

.ghdash__stat:hover {
  background: rgba(157, 0, 255, 0.05);
}

.ghdash__stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #757575;
  margin-bottom: 0.5rem;
}

.ghdash__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #111111;
  padding-top: 8px;
  transition: color 0.3s ease;
}

html.dark .ghdash__stat-value {
  color: #F4F4F0;
}

.ghdash__stat:hover .ghdash__stat-value {
  color: #9D00FF;
}

.ghdash__middle-row {
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid #111111;
  border-top: none;
  background: #FFFFFF;
}

html.dark .ghdash__middle-row {
  border-color: #F4F4F0;
  background: #1A1A1A;
}

@media (min-width: 1280px) {
  .ghdash__middle-row {
    grid-template-columns: 1fr 3fr;
  }

  .ghdash__middle-row>*:first-child {
    border-right: 2px solid #111111;
  }

  html.dark .ghdash__middle-row>*:first-child {
    border-color: #F4F4F0;
  }
}

@media (max-width: 1279px) {
  .ghdash__middle-row>*:first-child {
    border-bottom: 2px solid #111111;
  }

  html.dark .ghdash__middle-row>*:first-child {
    border-color: #F4F4F0;
  }
}

.ghdash__status {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  background: #F4F4F0;
}

html.dark .ghdash__status {
  background: #0A0A0A;
}

.ghdash__live {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.ghdash__dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #9D00FF;
  border-radius: 50% !important;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.ghdash__live-copy p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #757575;
}

.ghdash__live-copy strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111111;
}

html.dark .ghdash__live-copy strong {
  color: #F4F4F0;
}

.ghdash__last-msg {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: #757575;
  line-height: 1.5;
}

.ghdash__card--heatmap {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #F4F4F0;
}

html.dark .ghdash__card--heatmap {
  background: #111111;
}

.ghdash__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ghdash__card-head h3,
.ghdash__card-head p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #757575;
}

.ghdash__heatmap-wrap {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.ghdash__heatmap-wrap::-webkit-scrollbar {
  display: none;
}

.ghdash__heatmap {
  display: flex;
  gap: 3px;
  min-width: max-content;
}

.ghdash__heatmap>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ghdash__heatmap-cell {
  width: 14px;
  height: 14px;
}

.hm-0 {
  background: #F4F4F0;
}

.hm-1 {
  background: #E5CCFF;
}

.hm-2 {
  background: #B266FF;
}

.hm-3 {
  background: #9D00FF;
}

.hm-4 {
  background: #6600CC;
}

html.dark .hm-0 {
  background: #1A1A1A;
}

html.dark .hm-4 {
  background: #9D00FF;
}

.ghdash__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid #111111;
  border-top: none;
  background: #FFFFFF;
}

html.dark .ghdash__grid {
  border-color: #F4F4F0;
  background: #1A1A1A;
}

@media (min-width: 768px) {
  .ghdash__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ghdash__grid>*:not(:last-child) {
    border-right: 2px solid #111111;
  }

  html.dark .ghdash__grid>*:not(:last-child) {
    border-color: #F4F4F0;
  }
}

@media (max-width: 767px) {
  .ghdash__grid>*:not(:last-child) {
    border-bottom: 2px solid #111111;
  }

  html.dark .ghdash__grid>*:not(:last-child) {
    border-color: #F4F4F0;
  }
}

.ghdash__card {
  padding: 2rem;
}

.ghdash__card h3 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #757575;
  margin-bottom: 1rem;
}

.ghdash__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.ghdash__duo-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #757575;
  border-left: 4px solid #9D00FF;
  padding-left: 0.75rem;
  margin-bottom: 0.25rem;
}

.ghdash__duo-value {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111111;
  padding-left: 1rem;
}

html.dark .ghdash__duo-value {
  color: #F4F4F0;
}

.ghdash__duo-value span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 400;
  color: #757575;
  margin-left: 0.25rem;
}

.ghdash__mini {
  display: flex;
  flex-direction: column;
}

.ghdash__mini strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #111111;
}

html.dark .ghdash__mini strong {
  color: #F4F4F0;
}

.ghdash__mini span {
  display: block;
  margin-top: 0.3rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #757575;
}

.ghdash__bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ghdash__bar-label {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111111;
  margin-bottom: 0.25rem;
}

html.dark .ghdash__bar-label {
  color: #F4F4F0;
}

.ghdash__bar-track {
  width: 100%;
  height: 6px;
  background: #F4F4F0;
  overflow: hidden;
}

html.dark .ghdash__bar-track {
  background: #2A2A2A;
}

.ghdash__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #9D00FF;
  transition: width 0.6s ease;
}

.ghdash__bar-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.ghdash__bar-row>span:first-child {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #757575;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ghdash__bar-row strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  color: #111111;
}

html.dark .ghdash__bar-row strong {
  color: #F4F4F0;
}

.ghdash__repo-marquee-wrap {
  border: 2px solid #111111;
  border-top: none;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
}

html.dark .ghdash__repo-marquee-wrap {
  border-color: #F4F4F0;
  background: #1A1A1A;
}

.ghdash__repo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  white-space: normal;
  min-width: unset;
  animation: none;
}

.ghdash__repo-item {
  padding: 0.85rem 1rem;
  border: 2px solid #111111;
  min-width: 0;
}

html.dark .ghdash__repo-item {
  border-color: rgba(244, 244, 240, 0.15);
}

.ghdash__repo-item h4 {
  margin: 0;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.ghdash__repo-item h4 a {
  color: #111111;
  text-decoration: none;
  transition: color 0.15s ease;
}

html.dark .ghdash__repo-item h4 a {
  color: #F4F4F0;
}

.ghdash__repo-item h4 a:hover {
  color: #9D00FF;
}

.ghdash__repo-desc {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: #757575;
  line-height: 1.4;
}

.ghdash__repo-meta {
  margin-top: 0.4rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #757575;
  overflow-wrap: break-word;
  word-break: break-word;
}

.ghdash__badge {
  display: inline-block;
  font-size: 0.52rem;
  font-family: "JetBrains Mono", monospace;
  border: 1px solid rgba(17, 17, 17, 0.2);
  padding: 0.1rem 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #757575;
  margin-right: 0.25rem;
}

html.dark .ghdash__badge {
  border-color: rgba(244, 244, 240, 0.2);
}

.ghdash__card--feed {
  border: 2px solid #111111;
  border-top: none;
  background: #FFFFFF;
}

html.dark .ghdash__card--feed {
  border-color: #F4F4F0;
  background: #1A1A1A;
}

.ghdash__feed {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ghdash__feed li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #111111;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

html.dark .ghdash__feed li {
  color: #F4F4F0;
  border-color: rgba(244, 244, 240, 0.08);
}

.ghdash__feed-dot {
  width: 6px;
  height: 6px;
  background: #9D00FF;
  flex-shrink: 0;
}

.ghdash__feed-sha {
  color: #757575;
  flex-shrink: 0;
}

.ghdash__feed-msg {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ghdash__feed-time {
  color: #757575;
  flex-shrink: 0;
}

.ghdash__notice {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: #757575;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.5rem 0;
}

.ghdash__link {
  display: inline-block;
  margin-top: 1.5rem;
  border: 2px solid #111111;
  padding: 0.75rem 1.5rem;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111111;
  text-decoration: none;
  box-shadow: 4px 4px 0px #111111;
  transition: all 0.2s ease;
}

html.dark .ghdash__link {
  color: #F4F4F0;
  border-color: #F4F4F0;
  box-shadow: 4px 4px 0px #F4F4F0;
}

.ghdash__link:hover {
  background: #9D00FF;
  border-color: #9D00FF;
  color: #FFFFFF;
  box-shadow: none;
}

/* --- Article / Writing list --- */

.article-row {
  display: flex;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid #111111;
  padding-block: 32px;
  text-decoration: none;
  color: #111111;
  transition: background-color 0.2s ease, color 0.2s ease;
  overflow: hidden;
}

html.dark .article-row {
  border-color: #F4F4F0;
  color: #F4F4F0;
}

.article-row:hover {
  background-color: #9D00FF;
  color: #FFFFFF;
}

html.dark .article-row:hover {
  background-color: #9D00FF;
  color: #FFFFFF;
}

.article-date {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #757575;
}

.article-date span {
  font-family: var(--font-heading);
  /* Clash Display */
  font-size: 24px;
  font-weight: 600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex-shrink: 0;
  color: #757575;
}

.article-row:hover .article-date span {
  color: #C77DFF;
}

html.dark .article-row:hover .article-date span {
  color: #C77DFF;
}

.article-row:hover .article-date {
  color: #C77DFF;
}

html.dark .article-row:hover .article-date {
  color: #C77DFF;
}

.article-thumb {
  display: none;
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid currentColor;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.article-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-row:hover .article-thumb {
  opacity: 1;
}

@media (min-width: 768px) {
  .article-thumb {
    display: block;
  }
}

@media (min-width: 1024px) {
  .article-thumb {
    width: 280px;
  }
}

.article-content {
  flex: 1;
}

.article-meta-tags {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.article-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid currentColor;
  padding: 0.2rem 0.5rem;
  color: #757575;
}

.article-row:hover .article-tag {
  color: #FFFFFF;
}

html.dark .article-row:hover .article-tag {
  color: #FFFFFF;
}

.article-title {
  font-family: var(--font-body);
  /* Satoshi */
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #111111;
}

html.dark .article-title {
  color: #F4F4F0;
}

.article-row:hover .article-title {
  font-style: italic;
  color: #FFFFFF;
}

html.dark .article-row:hover .article-title {
  color: #FFFFFF;
}

.article-summary {
  font-size: 16px;
  color: #757575;
  /* WCAG NOTE: #888888 on #FFFFFF = 4.48:1 — just below AA 4.5:1 for small text. Verify in Lighthouse. */
  max-width: 560px;
  line-height: 1.6;
}

.article-row:hover .article-summary {
  color: rgba(255, 255, 255, 0.85);
}

html.dark .article-row:hover .article-summary {
  color: rgba(255, 255, 255, 0.85);
}

.article-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 768px) {
  .article-arrow {
    display: flex;
  }
}

.article-row:hover .article-arrow {
  opacity: 1;
  transform: translateX(-1rem);
}

/* Mobile: hide vertical date marker, article-title shrinks */

@media (max-width: 640px) {
  .article-date {
    display: none;
  }

  .article-row {
    gap: 0;
    padding-block: 24px;
  }

  .article-title {
    font-size: 28px;
  }
}

/* --- Journal cards (homepage) --- */

.journal__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.journal-card {
  border-bottom: 1px solid #111111;
}

html.dark .journal-card {
  border-color: #F4F4F0;
}

.journal-card__link-wrap {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #111111;
  transition: background-color 0.2s ease, color 0.2s ease;
}

html.dark .journal-card__link-wrap {
  color: #F4F4F0;
}

@media (min-width: 768px) {
  .journal-card__link-wrap {
    flex-direction: row;
  }
}

.journal-card__link-wrap:hover {
  background: #111111;
  color: #FFFFFF;
}

html.dark .journal-card__link-wrap:hover {
  background: #F4F4F0;
  color: #0A0A0A;
}

.journal-card__thumb {
  flex-shrink: 0;
  width: 100%;
  min-height: 120px;
  border-bottom: 1px solid #111111;
  overflow: hidden;
}

html.dark .journal-card__thumb {
  border-color: #F4F4F0;
}

@media (min-width: 768px) {
  .journal-card__thumb {
    width: 12rem;
    min-height: auto;
    border-bottom: none;
    border-right: 1px solid #111111;
  }

  html.dark .journal-card__thumb {
    border-color: #F4F4F0;
  }
}

.journal-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
}

.journal-card__content {
  flex: 1;
  padding: 1.5rem 2rem;
}

.journal-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.journal-card__date,
.journal-card__reading {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #757575;
}

.journal-card__link-wrap:hover .journal-card__date,
.journal-card__link-wrap:hover .journal-card__reading {
  color: rgba(255, 255, 255, 0.6);
}

html.dark .journal-card__link-wrap:hover .journal-card__date,
html.dark .journal-card__link-wrap:hover .journal-card__reading {
  color: rgba(10, 10, 10, 0.6);
}

.journal-card__sep {
  color: #757575;
}

.journal-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.journal-card__link-wrap:hover .journal-card__title {
  font-style: italic;
}

.journal-card__summary {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.8;
}

.journal-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.journal-card__tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #757575;
}

.journal-card__read-more {
  display: none;
}

.journal__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.journal__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #111111;
  padding: 0.75rem 1.5rem;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111111;
  text-decoration: none;
  box-shadow: 4px 4px 0px #111111;
  transition: all 0.2s ease;
}

html.dark .journal__cta-link {
  color: #F4F4F0;
  border-color: #F4F4F0;
  box-shadow: 4px 4px 0px #F4F4F0;
}

.journal__cta-link:hover {
  background: #9D00FF;
  border-color: #9D00FF;
  color: #FFFFFF;
  box-shadow: none;
}

/* --- Contact / Chat --- */

/* ─── Outer window ─── */
.contact-chat {
  width: min(600px, 100%);
  margin-inline: auto;
  border-radius: 16px;
  background: #1A1A1A;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

html.dark .contact-chat {
  background: #1A1A1A;
}

/* ─── Topbar ─── */
.contact-chat__topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.contact-chat__avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-chat__avatar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-chat__info {
  flex: 1;
  min-width: 0;
}

.contact-chat__name {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #F4F4F0;
  display: block;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.contact-chat__status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: rgba(244, 244, 240, 0.55);
  letter-spacing: 0.03em;
}

.contact-chat__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00E676;
  box-shadow: 0 0 6px rgba(0, 230, 118, 0.7);
  flex-shrink: 0;
  animation: ccStatusPulse 2.5s ease infinite;
}

@keyframes ccStatusPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(0, 230, 118, 0.7); }
  50%       { box-shadow: 0 0 14px rgba(0, 230, 118, 0.35); opacity: 0.85; }
}

.contact-chat__step-dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.chat-step-pip {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.chat-step-pip.is-done {
  background: #00E676;
  border-color: #00E676;
}

.chat-step-pip.is-active {
  background: #9D00FF;
  border-color: #9D00FF;
  box-shadow: 0 0 8px rgba(157, 0, 255, 0.55);
  animation: ccPipPulse 1.8s ease infinite;
}

@keyframes ccPipPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(157, 0, 255, 0.55); }
  50%       { box-shadow: 0 0 16px rgba(157, 0, 255, 0.3); }
}

/* ─── Progress strip ─── */
.contact-chat__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.contact-chat__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9D00FF, #c77dff);
  border-radius: 0 2px 2px 0;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Message feed ─── */
.chat-window {
  padding: 1.2rem 1.1rem 0.6rem;
  max-height: 380px;
  overflow-y: auto;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.chat-window::-webkit-scrollbar { width: 3px; }
.chat-window::-webkit-scrollbar-track { background: transparent; }
.chat-window::-webkit-scrollbar-thumb {
  background: rgba(157, 0, 255, 0.3);
  border-radius: 2px;
}

.bot-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
  animation: ccBubbleIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ccBubbleIn {
  from { opacity: 0; transform: translateY(6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.bot-avatar-mini {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.bot-avatar-mini img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.bot-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px 14px 14px 14px;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(244, 244, 240, 0.75);
  max-width: 80%;
}

.typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.7rem 0.9rem;
}

.typing-bubble span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(157, 0, 255, 0.5);
  animation: ccDotBounce 1.3s ease-in-out infinite;
}

.typing-bubble span:nth-child(2) { animation-delay: 0.15s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.3s; }

@keyframes ccDotBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

.user-row {
  display: flex;
  justify-content: flex-end;
  animation: ccUserBubbleIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ccUserBubbleIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.user-bubble {
  background: #9D00FF;
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 78%;
  word-break: break-word;
}

/* ─── Input zone ─── */
.chat-input-zone {
  padding: 0.8rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  animation: ccFadeSlideUp 0.25s ease forwards;
  flex-shrink: 0;
}

.chat-input-zone[hidden] {
  display: none;
}

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

.chat-chips {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.chat-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 244, 240, 0.82);
  font-size: 0.88rem;
  font-family: "Satoshi", "Space Grotesk", sans-serif;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.chat-chip:hover {
  background: rgba(157, 0, 255, 0.15);
  border-color: rgba(157, 0, 255, 0.4);
  color: #F4F4F0;
  transform: translateX(4px);
}

.chip-emoji {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}

.chat-text-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.chat-text-row--area {
  flex-direction: column;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #F4F4F0;
  font-family: "Satoshi", "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  caret-color: #9D00FF;
}

.chat-textarea {
  resize: none;
  min-height: 80px;
  width: 100%;
}

.chat-input::placeholder { color: rgba(244, 244, 240, 0.35); }

.chat-input:focus {
  border-color: rgba(157, 0, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(157, 0, 255, 0.12);
}

.chat-input.is-shake {
  animation: ccInputShake 0.4s ease;
  border-color: #ff5252;
  box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.15);
}

@keyframes ccInputShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-3px); }
  80%       { transform: translateX(3px); }
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  background: #9D00FF;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(157, 0, 255, 0.5);
}

.chat-send-btn:active { transform: scale(0.95); }

.send-btn-wide {
  align-self: flex-end;
  background: #9D00FF;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.send-btn-wide:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(157, 0, 255, 0.45);
}

/* ─── Summary / review card ─── */
.summary-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 0, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.summary-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.summary-row:last-child { border-bottom: none; }

.summary-row.is-editing {
  background: rgba(157, 0, 255, 0.06);
}

.summary-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
}

.summary-key {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  color: #c77dff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 0.15rem;
  flex-shrink: 0;
  width: 52px;
}

.summary-val {
  color: rgba(244, 244, 240, 0.78);
  line-height: 1.5;
  flex: 1;
  font-size: 0.875rem;
  word-break: break-word;
}

.summary-edit-btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: rgba(244, 244, 240, 0.68);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.05rem;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.summary-edit-btn:hover {
  color: #F4F4F0;
  border-color: rgba(157, 0, 255, 0.4);
  background: rgba(157, 0, 255, 0.08);
}

.summary-edit-area {
  padding: 0 0.9rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  animation: ccExpandIn 0.2s ease forwards;
}

@keyframes ccExpandIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.inline-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(157, 0, 255, 0.4);
  border-radius: 8px;
  color: #F4F4F0;
  font-family: "Satoshi", "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  caret-color: #9D00FF;
  resize: none;
}

.inline-input:focus {
  border-color: #9D00FF;
  box-shadow: 0 0 0 3px rgba(157, 0, 255, 0.12);
}

.inline-input.is-shake {
  animation: ccInputShake 0.4s ease;
  border-color: #ff5252;
}

.inline-save-row {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}

.btn-inline-save {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  background: #9D00FF;
  border: none;
  border-radius: 6px;
  color: #fff;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-inline-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(157, 0, 255, 0.4);
}

.btn-inline-cancel {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(244, 244, 240, 0.68);
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease;
}

.btn-inline-cancel:hover {
  color: #F4F4F0;
  border-color: rgba(255, 255, 255, 0.2);
}

.inline-chips {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.inline-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 244, 240, 0.82);
  font-size: 0.84rem;
  font-family: "Satoshi", "Space Grotesk", sans-serif;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.inline-chip:hover {
  background: rgba(157, 0, 255, 0.12);
  border-color: rgba(157, 0, 255, 0.4);
  color: #F4F4F0;
}

.inline-chip.is-current {
  background: rgba(157, 0, 255, 0.15);
  border-color: rgba(157, 0, 255, 0.5);
  color: #F4F4F0;
}

.review-actions {
  display: flex;
}

.btn-send-final {
  flex: 1;
  background: #9D00FF;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-send-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(157, 0, 255, 0.5);
}

.btn-send-final:active { transform: translateY(0); }

/* ─── Success overlay ─── */
.chat-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(15, 15, 20, 0.98);
  z-index: 10;
  padding: 2.5rem 2rem 3rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chat-success.is-visible {
  display: flex;
  opacity: 1;
}

.chat-success__ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #00E676;
  background: rgba(0, 230, 118, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #00E676;
  box-shadow: 0 0 0 8px rgba(0, 230, 118, 0.06), 0 0 30px rgba(0, 230, 118, 0.2);
  animation: ccRingPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ccRingPop {
  from { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.1); }
  to   { transform: scale(1); opacity: 1; }
}

.chat-success__title {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F4F4F0;
}

#chat-success-msg {
  font-size: 0.875rem;
  color: rgba(244, 244, 240, 0.72);
  max-width: 280px;
  line-height: 1.6;
}

.chat-success__restart {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: rgba(244, 244, 240, 0.72);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.chat-success__restart:hover {
  color: #F4F4F0;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ─── Light theme ─── */
[data-theme="light"] .contact-chat {
  background: #F4F4F0;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contact-chat__topbar {
  background: rgba(0, 0, 0, 0.03);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .contact-chat__name { color: #111111; }
[data-theme="light"] .contact-chat__status { color: rgba(17, 17, 17, 0.65); }

[data-theme="light"] .contact-chat__step-dots .chat-step-pip {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .contact-chat__progress { background: rgba(0, 0, 0, 0.06); }

[data-theme="light"] .bot-bubble {
  background: rgba(157, 0, 255, 0.05);
  border-color: rgba(157, 0, 255, 0.1);
  color: rgba(17, 17, 17, 0.8);
}

[data-theme="light"] .bot-avatar-mini {
  background: none;
}

[data-theme="light"] .contact-chat__avatar {
  background: none;
}

[data-theme="light"] .chat-input {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  color: #111111;
}

[data-theme="light"] .chat-input::placeholder { color: rgba(17, 17, 17, 0.35); }

[data-theme="light"] .chat-input:focus {
  border-color: rgba(157, 0, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(157, 0, 255, 0.12);
}

[data-theme="light"] .chat-chip {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(17, 17, 17, 0.82);
}

[data-theme="light"] .chat-chip:hover {
  background: rgba(157, 0, 255, 0.08);
  border-color: rgba(157, 0, 255, 0.35);
  color: #111111;
}

[data-theme="light"] .inline-input {
  background: #fff;
  border-color: rgba(157, 0, 255, 0.35);
  color: #111111;
}

[data-theme="light"] .summary-card { background: rgba(0, 0, 0, 0.02); }
[data-theme="light"] .summary-val { color: rgba(17, 17, 17, 0.82); }
[data-theme="light"] .summary-row { border-bottom-color: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .summary-key { color: #6d28d9; }

[data-theme="light"] .summary-edit-btn {
  color: rgba(17, 17, 17, 0.7);
  border-color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .btn-inline-cancel {
  color: rgba(17, 17, 17, 0.7);
  border-color: rgba(0, 0, 0, 0.22);
}

[data-theme="light"] .inline-chip {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.16);
  color: rgba(17, 17, 17, 0.82);
}

[data-theme="light"] .inline-chip:hover {
  background: rgba(157, 0, 255, 0.07);
  border-color: rgba(157, 0, 255, 0.35);
  color: #111111;
}

[data-theme="light"] .inline-chip.is-current {
  background: rgba(157, 0, 255, 0.1);
  border-color: rgba(157, 0, 255, 0.45);
  color: #4a1272;
}

[data-theme="light"] .chat-input-zone { border-top-color: rgba(0, 0, 0, 0.12); }

[data-theme="light"] .chat-success {
  background: rgba(250, 250, 250, 0.98);
}

[data-theme="light"] .chat-success__title { color: #111111; }
[data-theme="light"] #chat-success-msg { color: rgba(17, 17, 17, 0.65); }

[data-theme="light"] .chat-success__restart {
  border-color: rgba(0, 0, 0, 0.22);
  color: rgba(17, 17, 17, 0.68);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .bot-row,
  .user-row,
  .chat-input-zone,
  .summary-edit-area {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .contact-chat__status-dot,
  .chat-step-pip.is-active,
  .typing-bubble span {
    animation: none;
  }

  .contact-chat__progress-fill {
    transition: none;
  }
}

/* ─── Mobile contact ─── */
@media (max-width: 640px) {
  .chat-window {
    max-height: 300px;
  }

  .bot-bubble,
  .chat-chip,
  .chat-input {
    font-size: 0.84rem;
  }
}

/* --- Footer --- */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-top: 2px solid #111111;
  background: #FFFFFF;
  color: #111111;
}

html.dark .footer {
  border-color: #F4F4F0;
  background: #1A1A1A;
  color: #F4F4F0;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
  }
}

.footer p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__icon {
  color: #757575;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__icon:hover {
  color: #111111;
}

html.dark .footer__icon:hover {
  color: #F4F4F0;
}

/* --- Back to top --- */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #111111;
  color: #FFFFFF;
  border: 2px solid #111111;
  padding: 0.5rem 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  box-shadow: 4px 4px 0px #111111;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

html.dark .back-to-top {
  background: #F4F4F0;
  color: #111111;
  border-color: #F4F4F0;
  box-shadow: 4px 4px 0px #F4F4F0;
}

.back-to-top:hover {
  background: #9D00FF;
  border-color: #9D00FF;
  color: #FFFFFF;
  box-shadow: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* --- Accessibility: sr-only --- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Blog post meta pill row (icon + label badges) --- */

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.post-meta__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111111;
  background: #F4F4F0;
  border: 2px solid #111111;
  border-radius: 0;
  padding: 0.2rem 0.55rem;
  box-shadow: 2px 2px 0px #111111;
  white-space: nowrap;
}

html.dark .post-meta__pill {
  color: #F4F4F0;
  background: #1A1A1A;
  border-color: #F4F4F0;
  box-shadow: 2px 2px 0px #F4F4F0;
}

.post-meta__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: #9D00FF;
  border: 2px solid #9D00FF;
  border-radius: 0;
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
}

html.dark .post-meta__tag {
  color: #FFFFFF;
  background: #9D00FF;
  border-color: #9D00FF;
}

/* --- Blog post H1 title --- */

.post__title {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 1rem;
  border-bottom: 4px solid #9D00FF;
  padding-bottom: 0.75rem;
}

html.dark .post__title {
  color: #F4F4F0;
}

@media (max-width: 640px) {
  .post__title {
    font-size: 2rem;
  }
}

/* --- Blog post prose (journal pages) --- */

.prose-post h2 {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-top: 3rem;
  margin-bottom: 0.85rem;
  border-left: 4px solid #9D00FF;
  padding-left: 1rem;
  color: #111111;
}

html.dark .prose-post h2 {
  color: #F4F4F0;
}

@media (max-width: 640px) {
  .prose-post h2 {
    font-size: 1.4rem;
  }
}

.prose-post h3 {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
  color: #757575;
}

html.dark .prose-post h3 {
  color: #9A9A9A;
}

@media (max-width: 640px) {
  .prose-post h3 {
    font-size: 1.05rem;
  }
}

.prose-post p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

.prose-post li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.prose-post pre {
  background: #111111;
  color: #F4F4F0;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  border-left: 4px solid #9D00FF;
}

html.dark .prose-post pre {
  background: #0A0A0A;
}

.prose-post code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  background: #F4F4F0;
  padding: 0.1rem 0.3rem;
}

html.dark .prose-post code {
  background: #2A2A2A;
  color: #F4F4F0;
}

.prose-post a {
  color: #9D00FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-post a:hover {
  text-decoration: none;
}

.prose-post strong {
  font-weight: 900;
}

.prose-post em {
  font-style: italic;
}

/* --- No-JS fallbacks --- */

.no-js .nav__hamburger {
  display: none;
}

.no-js .nav__links {
  display: flex !important;
}

.hover\:translate-x-1:hover {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:translate-y-1:hover {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-primary:hover {
  --tw-border-opacity: 1;
  border-color: rgb(157 0 255 / var(--tw-border-opacity, 1));
}

.hover\:bg-accent:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 230 118 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(157 0 255 / var(--tw-bg-opacity, 1));
}

.hover\:text-ink:hover {
  --tw-text-opacity: 1;
  color: rgb(17 17 17 / var(--tw-text-opacity, 1));
}

.hover\:shadow-none:hover {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-2:focus {
  outline-width: 2px;
}

.focus\:outline-offset-2:focus {
  outline-offset: 2px;
}

.focus\:outline-\[\#9D00FF\]:focus {
  outline-color: #9D00FF;
}

.group:hover .group-hover\:text-primary {
  --tw-text-opacity: 1;
  color: rgb(157 0 255 / var(--tw-text-opacity, 1));
}

.dark\:border-ink-dark:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(244 244 240 / var(--tw-border-opacity, 1));
}

.dark\:bg-bg-dark:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}

.dark\:bg-ink-dark:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 240 / var(--tw-bg-opacity, 1));
}

.dark\:bg-surface-dark:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 26 / var(--tw-bg-opacity, 1));
}

.dark\:text-ink-dark:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(244 244 240 / var(--tw-text-opacity, 1));
}

.dark\:text-muted-dark:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity, 1));
}

.dark\:text-surface-dark:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(26 26 26 / var(--tw-text-opacity, 1));
}

.dark\:opacity-\[0\.06\]:is(.dark *) {
  opacity: 0.06;
}

.dark\:shadow-brutal-dark:is(.dark *) {
  --tw-shadow: 6px 6px 0px #F4F4F0;
  --tw-shadow-colored: 6px 6px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.dark\:shadow-brutal-lg-dark:is(.dark *) {
  --tw-shadow: 8px 8px 0px #F4F4F0;
  --tw-shadow-colored: 8px 8px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.dark\:hover\:bg-accent:hover:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(0 230 118 / var(--tw-bg-opacity, 1));
}

.dark\:hover\:text-ink:hover:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(17 17 17 / var(--tw-text-opacity, 1));
}

.dark\:hover\:text-ink-dark:hover:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(244 244 240 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {

  .sm\:gap-3 {
    gap: 0.75rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:text-\[88px\] {
    font-size: 88px;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {

  .lg\:min-h-0 {
    min-height: 0px;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:border-b-0 {
    border-bottom-width: 0px;
  }

  .lg\:border-r-2 {
    border-right-width: 2px;
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:text-\[108px\] {
    font-size: 108px;
  }
}
.dark-mode-logo { display: none; }
.dark .dark-mode-logo { display: block; }
.dark .light-mode-logo { display: none; }
