:root {
  --site-bg: #f7f4ed;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #171717;
  --muted: #62645f;
  --line: #ded8cc;
  --accent: #0f766e;
  --accent-dark: #0a5b55;
  --accent-warm: #d95f3d;
  --accent-gold: #d7a83f;
  --shadow: 0 18px 50px rgba(23, 23, 23, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--site-bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-header {
  background: rgba(247, 244, 237, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 76px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  font-size: 0.95rem;
  line-height: 1;
}

.brand-name {
  display: none;
}

.nav-link {
  color: var(--muted);
  font-weight: 700;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: normal;
}

.btn-primary {
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent-dark);
  --bs-btn-hover-border-color: var(--accent-dark);
  --bs-btn-active-bg: var(--accent-dark);
  --bs-btn-active-border-color: var(--accent-dark);
}

.btn-outline-dark {
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: rgba(23, 23, 23, 0.35);
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
}

.hero-section,
.page-hero,
.project-hero {
  padding: 4.5rem 0 3rem;
}

.section-spacing {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 1.75rem;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.section-title {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-title {
  max-width: 10ch;
  font-size: 3.25rem;
}

.page-title {
  max-width: 12ch;
  font-size: 2.75rem;
}

.section-title {
  font-size: 2rem;
}

.hero-copy,
.page-intro,
.section-copy,
.prose {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-copy {
  max-width: 68ch;
  margin: 1.5rem 0 0;
}

.page-intro {
  max-width: 64ch;
  margin: 1rem 0 0;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-showcase,
.project-media,
.trailer-preview {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-showcase {
  min-height: 300px;
  aspect-ratio: 4 / 3;
}

.project-media {
  min-height: 210px;
  aspect-ratio: 16 / 10;
  box-shadow: none;
}

.truth-game-media,
.donkey-kong-media,
.avoid-jam-media,
.trailer-preview {
  background-color: #102622;
}

.truth-game-media {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(20, 30, 28, 0.98)),
    linear-gradient(45deg, transparent 0 43%, rgba(217, 95, 61, 0.9) 43% 48%, transparent 48% 100%);
}

.donkey-kong-media {
  background:
    linear-gradient(135deg, rgba(95, 53, 34, 0.95), rgba(31, 48, 39, 0.98)),
    linear-gradient(90deg, rgba(215, 168, 63, 0.85) 0 12%, transparent 12% 100%);
}

.avoid-jam-media {
  background:
    linear-gradient(135deg, rgba(170, 53, 72, 0.94), rgba(24, 88, 79, 0.98)),
    linear-gradient(0deg, transparent 0 62%, rgba(247, 244, 237, 0.2) 62% 66%, transparent 66% 100%);
}

.hero-showcase::before,
.project-media::before,
.trailer-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.34;
}

.media-platform {
  position: absolute;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 8px 0 rgba(23, 23, 23, 0.14);
}

.platform-one {
  left: 10%;
  right: 38%;
  bottom: 26%;
}

.platform-two {
  left: 42%;
  right: 12%;
  top: 32%;
  background: rgba(215, 168, 63, 0.95);
}

.platform-three {
  left: 18%;
  right: 28%;
  bottom: 48%;
  background: rgba(217, 95, 61, 0.92);
}

.media-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.1rem;
  max-width: calc(100% - 2rem);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.62);
  color: var(--surface);
}

.media-badge span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.media-badge strong {
  font-size: 1.1rem;
  line-height: 1.15;
}

.project-grid {
  align-items: stretch;
}

.project-card {
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.08);
}

.project-card .card-body {
  padding: 1.35rem;
}

.project-card .card-footer {
  padding: 0 1.35rem 1.35rem;
  border-top: 0;
  background: transparent;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.badge {
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
}

.text-bg-light {
  background-color: #eee7db !important;
  color: var(--ink) !important;
}

.project-title {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.project-description {
  margin: 0;
  color: var(--muted);
}

.resume-section {
  background: #ebe5da;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus {
  color: var(--ink);
}

.project-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.prose p {
  margin-bottom: 1.1rem;
}

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

.detail-panel {
  padding: 1.35rem;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.08);
}

.detail-panel-title {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 900;
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.detail-list div {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.trailer-preview {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(23, 23, 23, 0.96)),
    linear-gradient(45deg, rgba(217, 95, 61, 0.86) 0 18%, transparent 18% 100%);
}

.trailer-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  color: var(--surface);
  text-align: left;
}

.play-button {
  display: inline-grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.95);
  color: var(--accent-dark);
  font-size: 2rem;
}

.trailer-label,
.trailer-author {
  margin: 0;
}

.trailer-label {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.trailer-author {
  color: rgba(255, 253, 248, 0.78);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(217, 95, 61, 0.85);
  outline-offset: 3px;
}

@media (min-width: 576px) {
  .brand-name {
    display: inline;
  }

  .hero-title {
    font-size: 4rem;
  }

  .page-title {
    font-size: 3.25rem;
  }

  .section-title {
    font-size: 2.35rem;
  }

}

@media (min-width: 992px) {
  .hero-section,
  .page-hero,
  .project-hero {
    padding: 6rem 0 4.5rem;
  }

  .section-spacing {
    padding: 5rem 0;
  }

  .hero-title {
    font-size: 5.4rem;
  }

  .page-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.75rem;
  }

  .hero-showcase {
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    min-height: 68px;
  }

  .hero-section,
  .page-hero,
  .project-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .section-spacing {
    padding: 3.25rem 0;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .page-title {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-lg {
    width: 100%;
  }

  .project-card .btn {
    width: 100%;
  }

  .trailer-content {
    flex-direction: column;
    text-align: center;
  }

  .play-button {
    width: 56px;
    height: 56px;
  }
}

.home-page {
  --portfolio-content-width: 960px;
  --portfolio-page-gutter: 44px;
  --portfolio-text-grey: #b8b8b8;
  --portfolio-rule: #472007;
  min-height: 100vh;
  background: #080808;
  color: #f1f1f1;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-header {
  height: 58px;
  background: #080808;
  border-top: 4px solid #141414;
}

.home-nav,
.home-main {
  width: min(var(--portfolio-content-width), calc(100vw - var(--portfolio-page-gutter)));
  margin: 0 auto;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}

.home-nav-left,
.home-socials {
  display: flex;
  align-items: center;
}

.home-nav-left {
  gap: 21px;
}

.home-brand {
  color: var(--portfolio-text-grey);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transition: color 160ms ease;
}

.home-divider {
  width: 1px;
  height: 14px;
  background: #333333;
}

.home-link {
  color: var(--portfolio-text-grey);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.home-brand:hover,
.home-brand:focus,
.home-link.active,
.home-link:hover,
.home-link:focus {
  color: #ff6900;
}

.home-socials {
  gap: 14px;
}

.home-socials a {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #f6f6f6;
  font-size: 19px;
  line-height: 1;
  transition: color 160ms ease;
}

.home-socials a:hover,
.home-socials a:focus {
  color: #ff6900;
}

.projects-main {
  width: min(var(--portfolio-content-width), calc(100vw - var(--portfolio-page-gutter)));
  margin: 0 auto;
}

.projects-main {
  padding: 24px 0 52px;
}

.projects-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--portfolio-rule);
}

.projects-heading h1 {
  margin: 0;
  color: #f6f6f6;
  font-size: 104px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
}

.projects-list {
  padding-top: 32px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 78px;
}

.projects-card {
  min-width: 0;
}

.projects-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: 5px;
  background: #111111;
  transition: border-color 160ms ease;
}

.projects-image:hover,
.projects-image:focus {
  border-color: #ff6900;
}

.truth-card-image img,
.kong-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.truth-card-image img {
  object-position: 82% 52%;
}

.jam-card-image {
  background: #303549;
}

.jam-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-card h3 {
  margin: 13px 0 5px;
  color: #f2f2f2;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 1.15;
}

.projects-card p {
  margin: 0;
  color: var(--portfolio-text-grey);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.projects-card h3 a,
.projects-card p a,
.home-project-card h3 a,
.home-project-card p a {
  transition: color 160ms ease;
}

.projects-card h3 a:hover,
.projects-card h3 a:focus,
.projects-card p a:hover,
.projects-card p a:focus,
.home-project-card h3 a:hover,
.home-project-card h3 a:focus,
.home-project-card p a:hover,
.home-project-card p a:focus {
  color: #ff6900;
}

.projects-card:hover .projects-image,
.projects-card:focus-within .projects-image,
.home-project-card:hover .home-project-image,
.home-project-card:focus-within .home-project-image {
  border-color: #ff6900;
}

.projects-card:hover h3 a,
.projects-card:focus-within h3 a,
.projects-card:hover p a,
.projects-card:focus-within p a,
.home-project-card:hover h3 a,
.home-project-card:focus-within h3 a,
.home-project-card:hover p a,
.home-project-card:focus-within p a {
  color: #ff6900;
}

.resume-main {
  width: min(var(--portfolio-content-width), calc(100vw - var(--portfolio-page-gutter)));
  margin: 0 auto;
  padding: 24px 0 52px;
}

.resume-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0 15px;
  border-bottom: 1px solid var(--portfolio-rule);
}

.resume-heading h1 {
  margin: 0;
  color: #f6f6f6;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
}

.resume-heading a {
  color: var(--portfolio-text-grey);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.resume-heading a:hover,
.resume-heading a:focus {
  color: #ff6900;
}

.resume-viewer {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: 5px;
  background: #111111;
}

.resume-viewer object {
  display: block;
  width: 100%;
  height: min(1050px, calc(100vh - 190px));
  min-height: 620px;
  border: 0;
}

.resume-viewer p {
  margin: 0;
  padding: 24px;
  color: var(--portfolio-text-grey);
  font-size: 15px;
  font-weight: 700;
}

.resume-viewer a {
  color: #ff6900;
}

.truth-main {
  width: min(var(--portfolio-content-width), calc(100vw - var(--portfolio-page-gutter)));
  margin: 0 auto;
  padding: 24px 0 52px;
}

.truth-title-section h1 {
  max-width: 780px;
  margin: 0 0 10px;
  color: #f6f6f6;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.06;
}

.truth-facts {
  color: var(--portfolio-text-grey);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.truth-facts p {
  margin: 0;
}

.truth-facts ul {
  margin: 0 0 0 17px;
  padding: 0;
}

.truth-summary {
  margin: 2px 0 8px;
  color: var(--portfolio-text-grey);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.truth-hero-image {
  display: block;
  width: 100%;
  box-sizing: border-box;
  max-height: 562px;
  border: 1px solid #242424;
  object-fit: cover;
  object-position: center;
}

.truth-detail-page [data-lightbox-image] {
  cursor: zoom-in;
  transition: border-color 160ms ease;
}

.truth-detail-page [data-lightbox-image]:hover,
.truth-detail-page [data-lightbox-image]:focus {
  border-color: #ff6900;
}

.truth-overview {
  margin-top: 10px;
}

.truth-overview h2,
.truth-trailer h2 {
  margin: 0;
  color: #f3f3f3;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.08;
}

.truth-overview p {
  max-width: 900px;
  margin: 7px 0 0;
  color: var(--portfolio-text-grey);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.truth-trailer {
  margin-top: 8px;
}

.truth-features {
  margin-top: 10px;
}

.truth-code-samples {
  margin-top: 24px;
}

.truth-code-samples h3 {
  margin: 12px 0 0;
  color: #f3f3f3;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.12;
}

.truth-code-samples p {
  max-width: 900px;
  margin: 12px 0 0;
  color: var(--portfolio-text-grey);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.truth-features h2 {
  margin: 0;
  color: #f3f3f3;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.08;
}

.truth-features ul {
  margin: 8px 0 0 22px;
  padding: 0;
  color: var(--portfolio-text-grey);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.truth-features li + li {
  margin-top: 7px;
}

.truth-screenshots {
  margin-top: 24px;
}

.truth-code-samples h2,
.truth-screenshots h2 {
  margin: 0;
  color: #f3f3f3;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.08;
}

.truth-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.truth-screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #242424;
  object-fit: cover;
}

.lightbox-open {
  overflow: hidden;
}

.truth-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.9);
}

.truth-lightbox.is-open {
  display: flex;
}

.truth-lightbox img {
  display: block;
  max-width: min(1180px, 86vw);
  max-height: 82vh;
  border: 1px solid #333333;
  object-fit: contain;
}

.truth-lightbox button {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #333333;
  border-radius: 50%;
  background: #080808;
  color: #f3f3f3;
  font-size: 22px;
  line-height: 1;
}

.truth-lightbox button:hover,
.truth-lightbox button:focus {
  border-color: #ff6900;
  color: #ff6900;
}

.truth-lightbox-close {
  top: 22px;
  right: 22px;
}

.truth-lightbox-prev,
.truth-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.truth-lightbox-prev {
  left: 22px;
}

.truth-lightbox-next {
  right: 22px;
}

.truth-lightbox-counter {
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: var(--portfolio-text-grey);
  font-size: 14px;
  font-weight: 800;
}

.truth-video {
  width: min(720px, 100%);
  margin-top: 8px;
  background: #111111;
}

.truth-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.home-main {
  padding: 24px 0 52px;
}

.home-intro {
  padding-top: 6px;
}

.home-intro h1 {
  margin: 0 0 10px;
  color: #f6f6f6;
  font-size: 112px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.03;
}

.home-role {
  margin: 0 0 25px;
  color: var(--portfolio-text-grey);
  font-size: 18px;
  font-weight: 700;
}

.home-copy {
  max-width: 910px;
  margin: 0;
  color: var(--portfolio-text-grey);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.67;
}

.home-projects {
  margin-top: 28px;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--portfolio-rule);
}

.home-section-head h2 {
  margin: 0;
  color: #f4f4f4;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.home-section-head a {
  color: var(--portfolio-text-grey);
  font-size: 16px;
  font-weight: 800;
}

.home-section-head a:hover,
.home-section-head a:focus {
  color: #ff6900;
}

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.home-project-card {
  min-width: 0;
}

.home-project-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: 5px;
  background: #111111;
  transition: border-color 160ms ease;
}

.home-project-image:hover,
.home-project-image:focus {
  border-color: #ff6900;
}

.home-project-card h3 {
  margin: 13px 0 5px;
  color: #f0f0f0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 1.15;
}

.home-project-card p {
  margin: 0;
  color: var(--portfolio-text-grey);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
}

.truth-thumb {
  background:
    linear-gradient(103deg, rgba(2, 4, 20, 0.1), rgba(4, 6, 21, 0.62) 36%, rgba(8, 9, 25, 0.1) 60%),
    radial-gradient(circle at 55% 33%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    linear-gradient(155deg, transparent 0 34%, rgba(255, 255, 255, 0.94) 35% 35.8%, transparent 37%),
    linear-gradient(25deg, transparent 0 45%, rgba(255, 255, 255, 0.9) 46% 46.7%, transparent 48%),
    linear-gradient(170deg, transparent 0 50%, rgba(255, 255, 255, 0.78) 51% 51.8%, transparent 53%),
    linear-gradient(180deg, #0b0d27 0%, #20263e 43%, #151515 44%, #2e2e32 100%);
}

.truth-thumb::before,
.truth-thumb::after {
  position: absolute;
  content: "";
}

.truth-thumb::before {
  z-index: 1;
  left: 7%;
  right: 7%;
  bottom: 11%;
  height: 35%;
  background:
    linear-gradient(90deg, #d9d8d1 0 12%, transparent 12% 15%, #aaa89b 15% 31%, transparent 31% 34%, #d4c651 34% 46%, transparent 46% 49%, #858b8d 49% 64%, transparent 64% 67%, #d7d0aa 67% 82%, transparent 82% 85%, #9d9272 85% 100%);
  clip-path: polygon(0 45%, 10% 20%, 27% 20%, 34% 0, 55% 0, 61% 20%, 78% 20%, 88% 5%, 100% 5%, 100% 100%, 0 100%);
}

.truth-thumb::after {
  z-index: 2;
  left: 44%;
  top: 17%;
  width: 20%;
  height: 18%;
  border-top: 3px solid #e8712c;
  border-left: 3px solid #e8712c;
  transform: rotate(20deg);
}

.truth-light {
  position: absolute;
  z-index: 2;
  width: 36%;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
}

.truth-light.light-one {
  left: 13%;
  top: 39%;
  transform: rotate(16deg);
}

.truth-light.light-two {
  right: 2%;
  top: 30%;
  transform: rotate(-15deg);
}

.truth-floor {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 37%;
  background: linear-gradient(130deg, #242529, #92939a 52%, #19191b 100%);
  opacity: 0.86;
}

@media (max-width: 760px) {
  .home-intro h1 {
    font-size: clamp(48px, 12vw, 112px);
  }

  .home-project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .truth-screenshot-grid {
    grid-template-columns: 1fr;
  }

  .resume-heading h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .truth-title-section h1 {
    font-size: clamp(48px, 10vw, 96px);
  }
}

@media (max-width: 520px) {
  .home-header {
    height: auto;
  }

  .home-nav {
    align-items: flex-start;
    height: auto;
    padding: 16px 0;
  }

  .home-nav-left {
    flex-wrap: wrap;
    gap: 14px;
  }

  .home-socials {
    padding-top: 2px;
  }

  .home-main {
    padding-top: 12px;
  }

  .home-copy,
  .home-project-card p {
    font-size: 15px;
  }

  .projects-heading h1 {
    font-size: clamp(44px, 14vw, 104px);
  }

  .resume-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .resume-viewer object {
    height: calc(100vh - 180px);
    min-height: 520px;
  }
}
